forked from zoningatlas/web-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (78 loc) · 1.28 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
88
89
90
91
92
93
94
95
#sidebar {
z-index: 999 !important;
position: absolute;
width: 380px;
max-height: calc(100vh - 20px);
overflow-y: scroll;
background-color: white;
top: 10px;
left: 10px;
opacity: 0.95;
}
.leaflet-control-layers.driver-fix-stacking {
z-index: 999 !important;
}
.square {
height: 16px;
width: 16px;
display: inline-block;
border-radius: 2px;
vertical-align: middle;
}
.leaflet-interactive:hover {
opacity: 0.8;
}
label {
cursor: pointer;
}
label:hover {
opacity: 0.8;
}
.subgroup {
margin-bottom: 10px;
}
.main-in-group:checked ~ span {
font-weight: bold;
color: rgba(0,0,0,0.8);
}
hr {
border-top: 1px solid #333;
border-bottom: 0;
}
#activeAreaCalculator {
position: absolute;
top: 10px;
width: 340px;
margin-left: -170px;
left: 50%;
z-index: 999;
font-size: 0.95em;
}
.leaflet-control-layers-expanded {
border: 1px solid white;
border-radius: 2px;
}
#resetFilters {
cursor: pointer;
font-size: 20px;
}
.leaflet-tooltip {
width: 230px;
white-space: normal !important;
}
/* Tooltip title */
.t-t {
margin: 0;
padding: 0;
color: rgba(0,0,0,0.5);
font-size: 1em;
}
.t-t:not(:first-child) {
margin-top: 5px;
}
#driver-popover-item {
max-width: 450px !important;
}
.bb-dotted {
border-bottom: 1px dotted #333;
}