-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
104 lines (82 loc) · 1.98 KB
/
main.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
html, body {
margin: 0;
padding: 0;
}
.table {
border-collapse: separate;
border-spacing: 5em;
}
.leaflet-popup-content {
margin: 7px 37px 7px 8px;
line-height: 1.4;
font-size: 1.3em;
}
.leaflet-control-geocoder-icon {
background-color: #ffffff !important;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.2 13l3.4 6.6c.6 1.1 2.5-.4 2-1.2l-4-6.2z'/%3E%3Ccircle cx='10.8' cy='8.9' r='3.9' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") !important;
}
.marker-cluster-small {
background-color: rgba(64, 64, 65, .5);
}
.marker-cluster-small div {
background-color: rgba(64, 64, 65, .7);
}
.marker-cluster-medium {
background-color: rgba(64, 64, 65, .5);
}
.marker-cluster-medium div {
background-color: rgba(64, 64, 65, .7);
}
.marker-cluster-large {
background-color: rgba(64, 64, 65, .5);
}
.marker-cluster-large div {
background-color: rgba(64, 64, 65, .7);
}
/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
background-color: rgb(64, 64, 65, .7);
}
.leaflet-oldie .marker-cluster-small div {
background-color: rgb(64, 64, 65, .7);
}
.leaflet-oldie .marker-cluster-medium {
background-color: rgb(64, 64, 65, .7);
}
.leaflet-oldie .marker-cluster-medium div {
background-color: rgb(64, 64, 65, .7);
}
.leaflet-oldie .marker-cluster-large {
background-color: rgb(64, 64, 65, .7);
}
.leaflet-oldie .marker-cluster-large div {
background-color: rgb(64, 64, 65, .7);
}
.marker-cluster {
background-clip: padding-box;
border-radius: 20px;
}
.marker-cluster div {
width: 30px;
height: 30px;
margin-left: 5px;
margin-top: 5px;
text-align: center;
border-radius: 15px;
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.marker-cluster span {
color: #fff;
line-height: 30px;
}
#map {
height: 40vh
}
@media (min-width: 768px) {
tr > td:first-of-type {
padding-right: 15px;
}
#map, #filter {
height: 96vh;
}
}