-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfloat-loading.css
More file actions
39 lines (34 loc) · 855 Bytes
/
float-loading.css
File metadata and controls
39 lines (34 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.glyphicon.spinning {
animation: spin 1s infinite linear;
-webkit-animation: spin2 1s infinite linear;
}
@keyframes spin {
from { transform: scale(1) rotate(0deg); }
to { transform: scale(1) rotate(360deg); }
}
@-webkit-keyframes spin2 {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
#ext-plugin-loading {
width: -webkit-fill-available;
height: -webkit-fill-available;
position: fixed;
top: 0px;
left: 0px;
z-index: 2147483647;
background-color: rgba(100, 100, 100, 0.5);
text-align: center;
}
#ext-plugin-loading span {
border: 6px solid #f3f3f3; /* Light grey */
border-top: 6px solid #2b95db; /* Blue */
border-radius: 50%;
margin-top: 20px;
width: 40px;
height: 40px;
}
.hidden {
display: none;
visibility: collapse;
}