-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (60 loc) · 1.07 KB
/
style.css
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
/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
}
.animation{
height: 95px;
display: flex;
transform: rotate(180deg);
}
.animation span{
width: 38px;
margin: 0 2px;
border-radius: 6px;
/* background-color: #fff; */
animation: loader 2s infinite;
}
@keyframes loader{
0%, 100%{
height: 15px;
background: #0081C9;
}
25%{
height: 95px;
background: #FFB100;
}
50%{
height: 50px;
background: #54B435;
}
75%{
height: 95px;
background: #FF6464;
}
}
.animation span:nth-child(1){
animation-delay: .2s;
}
.animation span:nth-child(2){
animation-delay: .4s;
}
.animation span:nth-child(3){
animation-delay: .6s;
}
.animation span:nth-child(4){
animation-delay: .8s;
}
.animation span:nth-child(5){
animation-delay: 1s;
}