-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (77 loc) · 1.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
.spinner-border {
animation: none;
}
.spinner-border-animation {
-webkit-animation: .75s linear infinite spinner-border;
animation: .75s linear infinite spinner-border;
}
.custom-circle {
width: 30px;
height: 30px;
border-radius: 100%;
}
.custom-circle-animation {
-webkit-animation: 2s linear infinite custom-circle;
animation: 2s linear infinite custom-circle;
}
.loading-circle {
width: 30px;
height: 30px;
border-radius: 100%;
display: inline-block;
position: relative;
}
.loading-circle-animation {
-webkit-animation: 1s linear infinite loading-circle;
animation: 1s linear infinite loading-circle;
}
.loading-circle-2 {
width: 10px;
height: 10px;
border-radius: 100%;
display: inline-block;
position: relative;
}
.loading-circle-2-animation {
-webkit-animation: 0.4s linear infinite loading-circle-2;
animation: 0.4s linear infinite loading-circle-2;
}
@keyframes custom-circle {
0% {
transform: scale(1);
}
50% {
transform: scale(0.5);
}
100% {
transform: scale(1);
}
}
@keyframes loading-circle {
0% {
top: 0px;
}
50% {
top: 50px;
}
100% {
top: 0px;
}
}
@keyframes loading-circle-2 {
0% {
opacity: 1;
top: 0px;
}
25% {
top: -10px
}
50% {
opacity: 0.5;
top: 10px;
}
100% {
opacity: 1;
top: 0px;
}
}