-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
65 lines (61 loc) · 1.16 KB
/
main.css
File metadata and controls
65 lines (61 loc) · 1.16 KB
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
/* Legend classes */
.map-legend {
color: #555555;
}
.map-legend i {
float: left;
width: 18px;
height: 18px;
margin-right: 8px;
opacity: 0.7;
}
.map-legend-entry {
line-height: 18px;
}
/* Top right tooltip */
.map-info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.map-info h4 {
margin: 0 0 5px;
color: #777;
}
/* Map loading state */
.map-loading {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
background: rgba(0,0,0,0.5);
z-index: 99999;
display: flex;
align-content: center;
justify-content: center;
align-items: center;
color: #fff;
font-size: 2em;
}
.map-loading-spinner {
width: 48px;
height: 48px;
border: 5px solid #FFF;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}