-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.css
More file actions
42 lines (42 loc) · 783 Bytes
/
Copy pathloading.css
File metadata and controls
42 lines (42 loc) · 783 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
40
41
42
.lds-f {
display: block;
position: relative;
margin: auto;
width: 80px;
height: 80px;
margin-top: -15px;
}
.lds-f div {
display: inline-block;
position: absolute;
left: 8px;
width: 16px;
background: transparent;
opacity: .8;
animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
display: none;
border-radius: 20px;
border: 1.5px solid #A71930;
}
.lds-f div:nth-child(1) {
left: 8px;
animation-delay: -0.24s;
}
.lds-f div:nth-child(2) {
left: 32px;
animation-delay: -0.12s;
}
.lds-f div:nth-child(3) {
left: 56px;
animation-delay: 0;
}
@keyframes lds-facebook {
0% {
top: 8px;
height: 64px;
}
50%, 100% {
top: 24px;
height: 32px;
}
}