-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (52 loc) · 888 Bytes
/
style.css
File metadata and controls
56 lines (52 loc) · 888 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
48
49
50
51
52
53
54
55
56
body{
margin: 0;
padding: 0;
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.wrap{
height: 150px;
width: 150px;
display: flex;
justify-content: center;
align-items: center;
}
.one, .two, .three, .four, .five{
border-radius: 100%;
margin: 1vw;
animation: animate 3s linear infinite;
}
@keyframes animate{
0%, 50%, 100%{
transform: scale(1);
}
25%{
transform: scale(1.2);
}
75%{
transform: scale(0.8);
}
}
.one{
animation-delay: 0.4s;
border: 10px solid #00f;
}
.two{
animation-delay: 0.8s;
border: 10px solid #00f;
}
.three{
animation-delay: 1.2s;
border: 10px solid #00f;
}
.four{
animation-delay: 1.6s;
border: 10px solid #0ff;
}
.five{
animation-delay: 2.0s;
border: 10px solid #0ff;
}