-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (53 loc) · 1.01 KB
/
styles.css
File metadata and controls
62 lines (53 loc) · 1.01 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #d86981;
}
.loading span {
display: inline-block;
width: 30px;
height: 30px;
margin: 3px;
background-color: #f9de6b;
border-radius: 50%;
animation: load 1s infinite alternate;
}
.loading span:nth-of-type(2) {
background-color: #f1ae6b;
animation-delay: 0.2s;
}
.loading span:nth-of-type(3) {
background-color: #e87b6b;
animation-delay: 0.4s;
}
.loading span:nth-of-type(4) {
background-color: #dd496c;
animation-delay: 0.6s;
}
.loading span:nth-of-type(5) {
background-color: #c72f6c;
animation-delay: 0.8s;
}
.loading span:nth-of-type(6) {
background-color: #952b67;
animation-delay: 1s;
}
.loading span:nth-of-type(7) {
background-color: #642964;
animation-delay: 1.2s;
}
@keyframes load {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}