-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspinner.a7cd10ad.css
114 lines (110 loc) · 2.15 KB
/
spinner.a7cd10ad.css
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* Inspired by https://loading.io/css/ */
.lds-roller {
display: inline-block;
position: absolute;
width: 80px;
height: 80px;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.lds-roller div {
animation: lds-roller linear infinite;
transform-origin: 40px 40px;
mix-blend-mode: screen;
}
.lds-roller div:after {
content: " ";
display: block;
position: absolute;
border-radius: 50%;
background: rgb(30, 165, 255);
/*box-shadow: 0 0 1px 1px #fff;*/
transform-origin: 0 0;
animation: lds-scale ease-in-out infinite;
}
.lds-roller div:nth-child(1) {
animation-delay: -0.036s;
animation-duration: 0.8s;
}
.lds-roller div:nth-child(1):after {
/* background: #93dbe9; */
top: 63px;
left: 63px;
width: 7px;
height: 7px;
animation-delay: -0.036s;
animation-duration: 0.8s;
}
.lds-roller div:nth-child(2) {
animation-delay: -0.072s;
animation-duration: 1s;
}
.lds-roller div:nth-child(2):after {
/* background: #689cc5; */
top: 68px;
left: 56px;
width: 9px;
height: 9px;
animation-delay: -0.072s;
animation-duration: 1s;
}
.lds-roller div:nth-child(3) {
animation-delay: -0.108s;
animation-duration: 1.3s;
}
.lds-roller div:nth-child(3):after {
/* background: #5e6fa3; */
top: 71px;
left: 48px;
width: 11px;
height: 11px;
animation-delay: -0.108s;
animation-duration: 1.3s;
}
.lds-roller div:nth-child(4) {
animation-delay: -0.144s;
animation-duration: 2s;
}
.lds-roller div:nth-child(4):after {
/* background: #3b4368; */
top: 72px;
left: 40px;
width: 13px;
height: 13px;
animation-delay: -0.144s;
animation-duration: 2s;
}
.lds-roller div:nth-child(5) {
animation-delay: -0.18s;
animation-duration: 4s;
}
.lds-roller div:nth-child(5):after {
/* background: #191d3a; */
top: 71px;
left: 32px;
width: 17px;
height: 17px;
animation-delay: -0.18s;
animation-duration: 3.3s;
}
@keyframes lds-roller {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes lds-scale {
0% {
transform: scale(1.5);
}
50% {
transform: scale(1);
}
100% {
transform: scale(1.5);
}
}
/*# sourceMappingURL=/spinner.a7cd10ad.css.map */