forked from SiegeEngineers/aoe2-de-rating-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (87 loc) · 1.55 KB
/
styles.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
88
89
90
91
92
93
94
95
96
.hidden {
visibility: hidden;
}
.none {
display: none;
}
/* hide legend color chip */
.traces .legendsymbols { display: none; }
.loading-spinner {
width: 40px;
height: 40px;
position: relative;
animation: sk-chase 2.5s infinite linear both;
}
.spinner-dot {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
animation: spinner-dot 2s infinite ease-in-out both;
}
.spinner-dot:before {
content: "";
display: block;
width: 25%;
height: 25%;
background-color: #6311a5;
border-radius: 100%;
animation: spinner-dot-before 2s infinite ease-in-out both;
}
.spinner-dot:nth-child(1) {
animation-delay: -1.1s;
}
.spinner-dot:nth-child(2) {
animation-delay: -1s;
}
.spinner-dot:nth-child(3) {
animation-delay: -0.9s;
}
.spinner-dot:nth-child(4) {
animation-delay: -0.8s;
}
.spinner-dot:nth-child(5) {
animation-delay: -0.7s;
}
.spinner-dot:nth-child(6) {
animation-delay: -0.6s;
}
.spinner-dot:nth-child(1):before {
animation-delay: -1.1s;
}
.spinner-dot:nth-child(2):before {
animation-delay: -1s;
}
.spinner-dot:nth-child(3):before {
animation-delay: -0.9s;
}
.spinner-dot:nth-child(4):before {
animation-delay: -0.8s;
}
.spinner-dot:nth-child(5):before {
animation-delay: -0.7s;
}
.spinner-dot:nth-child(6):before {
animation-delay: -0.6s;
}
@keyframes sk-chase {
100% {
transform: rotate(360deg);
}
}
@keyframes spinner-dot {
80%,
100% {
transform: rotate(360deg);
}
}
@keyframes spinner-dot-before {
50% {
transform: scale(0.4);
}
100%,
0% {
transform: scale(1);
}
}