forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloadingSpinner.css
More file actions
45 lines (45 loc) · 1.05 KB
/
loadingSpinner.css
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
40
41
42
43
44
45
.vp-loading-spinner,
.vp-loading-spinner:after {
border-radius: 50%;
width: 10em;
height: 10em;
}
.vp-loading-spinner {
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
font-size: 6px;
text-indent: -9999em;
border-top: 1.1em solid #f6ad55;
border-right: 1.1em solid #f6ad55;
border-bottom: 1.1em solid #f6ad55;
border-left: 1.1em solid var(--vp-background-color);
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: vp-load8 1.1s infinite linear;
animation: vp-load8 1.1s infinite linear;
}
@-webkit-keyframes vp-load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes vp-load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}