-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
49 lines (41 loc) · 908 Bytes
/
stylesheet.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
body {
background-color: #9b59b6;
}
.loader {
margin-left: auto;
margin-right: auto;
text-align: center;
}
.loader > div {
width: 8px;
height: 8px;
background-color: #fff;
border-radius: 100%;
display: inline-block;
-webkit-animation: fadeDelay 1.4s infinite ease-in-out;
animation: fadeDelay 1.4s infinite ease-in-out;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.loader .circle1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.loader .circle2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
.loader .circle3 {
-webkit-animation-delay: -0.08s;
animation-delay: -0.08s;
}
@-webkit-keyframes fadeDelay {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fadeDelay {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}