-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMMM-air-raid-monitor-ua.css
71 lines (61 loc) · 1.07 KB
/
MMM-air-raid-monitor-ua.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
.MMM-air-raid-monitor-ua-wrapper {
position: relative;
}
.MMM-air-raid-monitor-ua-wrapper svg {
width: 100%;
height: auto;
}
.MMM-air-raid-monitor-ua-wrapper [class*="air-raid-status"] {
display: block;
}
.graph-legend {
display: block;
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
.graph-legend-item {
font-size: 0.75rem;
display: inline-block;
margin: 0 0.3rem;
}
.graph-legend [class*="air-raid-status"] {
display: inline-block;
width: 0.65rem;
height: 0.65rem;
margin-right: 0.2rem;
border-radius: 50%;
}
.preloader {
position: absolute;
bottom: 0;
left: 0;
}
.preloader__spinner {
position: absolute;
bottom: 0;
left: 0;
width: 0.75rem;
height: 0.75rem;
}
.preloader__spinner:before {
content: '';
display: block;
width: 100%;
height: 100%;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
border-left: 0;
border-right: 0;
border-radius: 50%;
animation: spin 1s infinite linear;
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}