-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
63 lines (59 loc) · 1015 Bytes
/
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
61
62
63
body{
background-color: #004c66;
}
.circle{
margin: 70px auto;
width: 40px;
height: 40px;
border: 5px solid rgba(255,255,255,0.2);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s linear infinite;
}
@Keyframes spin{
100%{
transform: rotate(360deg);
}
}
.container{
width: 40px;
margin: 70px auto;
}
.dot{
width: 10px;
height: 10px;
display: inline-block;
border-radius: 50%;
}
.dot1{
background-color: #1abc9c;
animation: jump-up 0.6s 0.1s linear infinite;
}
.dot2{
background-color: #ffd64a;
animation: jump-up 0.6s 0.2s linear infinite;
}
.dot3{
background-color: #e067af;
animation: jump-up 0.6s 0.3s linear infinite;
}
@Keyframes jump-up{
50%{
transform: translate(0,15px);
}
}
.box{
width: 15px;
height: 15px;
background-color: #008cbc;
display: inline-block;
animation: pulse 0.6s ease-in infinite alternate;
}
.box2, .box3{
animation-delay: 0.6s;
}
@Keyframes pulse{
100%{
opacity: 0;
}
}