-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
107 lines (94 loc) · 1.53 KB
/
index.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
97
98
99
100
101
102
103
104
105
106
107
path {
stroke: white;
stroke-width: 0.25px;
fill: grey;
}
div.tooltip {
position: absolute;
text-align: center;
width: 250px;
padding: 4px;
font: 12px helvetica;
background: lightsteelblue;
border: 0px;
border-radius: 0px;
pointer-events: none;
}
div.headText {
padding: 2px;
margin-left: 40px;
margin-bottom: 10px;
margin-top: 10px;
color: white;
font-size: 40px;
font-family: 'Roboto', sans-serif;
}
body {
background-color: dimgrey
}
p1 {
font-size: 14px;
}
#map-loading-spinner {
display: none; /*hidden by default*/
z-index: 99;
position: fixed;
left: 49vw;
top: 35vh;
}
#dbscan-button {
position: absolute;
z-index: 99;
bottom: 150px;
left: 50px;
color: black;
font-weight: 600;
}
#fatalities-button {
position: absolute;
z-index: 99;
bottom: 150px;
left: 190px;
color: black;
font-weight: 600;
}
#reset-button {
position: absolute;
z-index: 99;
bottom: 150px;
left: 372px;
background-color: #BDBDBD !important;
color: black;
font-weight: 600;
}
#cluster-info-toggle-container {
position: absolute;
z-index: 99;
bottom: 200px;
left: 50px;
display: none; /*hide initially*/
color: white !important;
}
#cluster-info-card {
display: none; /*hidden by default*/
position: fixed;
top: 5vh;
right: 3vw;
min-height: 150px !important;
background-color: rgba(0, 0, 0, 0.4);
color: white;
}
#cluster-info-title {
color: white;
font-weight: 900;
}
#cluster-info-text {
color: white;
}
.legentTitle {
color: white !important;
fill: white !important;
}
.axis-text {
fill: white !important;
}