-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (47 loc) · 775 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (47 loc) · 775 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
43
44
45
46
47
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.container{
width: 100vw;
height: 100vh;
background-color: bisque;
display: flex;
gap: 20px;
justify-content: center;
align-items: center;
}
span{
width: 50px;
height: 50px;
background-color: black;
border-radius: 50%;
animation-name: loading;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
span:nth-child(1){
animation-delay: 0s;
}
span:nth-child(2){
animation-delay: 0.33s;
}
span:nth-child(3){
animation-delay: 0.66s;
}
@keyframes loading{
0%{
opacity: 1;
}
25%{
opacity: 0;
}
50%{
opacity: 1;
}
100%{
opacity: 1;
}
}