-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.css
More file actions
86 lines (73 loc) · 1.22 KB
/
loading.css
File metadata and controls
86 lines (73 loc) · 1.22 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
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
/* LOADING */
#LOADING,
#LOADING:before {
width: 80px;
height: 80px;
border: none;
position: fixed;
top: calc(50vh - 40px);
left: calc(50vw - 40px);
z-index: 20;
margin: 0;
}
#LOADING:before {
content: var(--content);
font-size: 0.7em;
text-align: center;
padding-top: 50%;
color: white;
width: 100%;
height: 100%;
top: 0;
left: 0;
border-radius: 0;
background: rgb(0 0 0 / 60%);
}
#LOADING>div {
width: 16px;
height: 16px;
border-radius: 32px;
padding: 0;
margin: 0;
border: none;
background: white;
position: absolute;
top: 0;
left: calc(50% - 10px);
opacity: 0;
z-index: 21;
animation: blink 0.8s cubic-bezier(0, 0, 1, -0.12) infinite;
}
@keyframes blink {
0% {
opacity: 1
}
50% {
opacity: 0
}
}
#c0 {
transform: translate(0px, 0px);
}
#c1 {
transform: translate(20px, 11px);
}
#c2 {
transform: translate(30px, 30px)
}
#c3 {
transform: translate(20px, 50px)
}
#c4 {
transform: translate(0px, 60px)
}
#c5 {
transform: translate(-20px, 50px)
}
#c6 {
transform: translate(-30px, 30px)
}
#c7 {
transform: translate(-20px, 11px);
}
/* end LOADING */