-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (94 loc) · 2.14 KB
/
style.css
File metadata and controls
113 lines (94 loc) · 2.14 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
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
108
109
110
111
112
113
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
padding: 0;
}
#mapid {
height: 100%;
width: 100%;
}
/* Pop-ups*/
/* Hide the close button (X) in the popup */
.leaflet-popup-close-button {
display: none !important;
}
/* Hide the popup tail (arrow) */
.leaflet-popup-tip {
display: none;
}
/* Style for Pop-Up Content */
.popup-content {
font-size: 14px;
max-width: auto;
max-height: auto;
color: #252525;
line-height: 1.5;
overflow: auto;
}
/*Info Windows*/
/* Style for Info Window */
.info {
padding: 14px 10px;
font: 14px/18px Arial, Helvetica, sans-serif;
color: #bdbdbd;
background: #090909;
border-radius: 5px;
}
/* Style for Info Window Header type h4 */
.info h3 {
margin: 0 0 5px;
color: #bdbdbd;
}
/* Style for Legend */
.legend {
display: flex;
flex-direction: column; /* Stack the legend items vertically */
color: #bdbdbd;
opacity: 1;
}
/* Individual legend item style */
.legend-item {
display: flex;
align-items: center; /* Center the symbol and text horizontally */
flex-direction: row; /* Stack symbol and text vertically */
margin-bottom: 8px; /* Add space between legend items */
opacity: 1;
}
/* Individual legend item style */
.legend-popsize-item {
display: flex;
align-items: center; /* Center the symbol and text horizontally */
justify-content: space-around;
flex-direction: row; /* Stack symbol and text vertically */
margin-bottom: 8px; /* Add space between legend items */
opacity: 1;
}
/* Symbol styles for each Legend*/
/* Circle symbol style */
.legend-symbol {
width: 12px;
height: 12px;
border-radius: 50%; /* Make it a circle */
display: inline-block;
margin-right: 8px;
opacity: 0.4
}
/* Circle symbol style */
.legend-poster-symbol {
width: 4px;
height: 4px;
border-radius: 50%; /* Make it a circle */
display: inline-block;
margin-right: 8px;
opacity: 0.8
}
/* Circle symbol style */
.legend-popsize-symbol {
border-radius: 50%; /* Make it a circle */
display: inline-block;
margin-right: 8px;
opacity: 0.8;
}