-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
232 lines (202 loc) · 4 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
html { height: 100%; }
body {
margin: 0;
padding: 0;
/* Needed to easily vertically center the loading message */
display: flex;
height: 100%;
}
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
.layer-icon {
width: 20px;
height: 20px;
display: inline-block;
margin-right: 5px;
}
.bookmarks {
position:relative;
right: 10px;
background-color: rgb(227,229,230);
padding: 10px;
border-radius: 4px;
font-family: Arial, sans-serif;
z-index: 1;
width:100%;
height:100%;
font-size: 14px;
}
.switch-container {
display: flex;
align-items: center;
margin-right: 1px; /* Add margin to the right */
}
/* override "top" value of 3px for aligning with switch text */
.switch {
top: unset
}
.ms-small {
margin-left: 0.25rem;
}
.popup-image-container {
margin-top: 10px;
text-align: center;
}
.popup-image {
max-width: 100%;
height: auto;
}
.rounded-rect {
background: rgb(227,229,230);
border-radius: 10px;
box-shadow: 0 0 50px -25px black;
top:1px;
}
.flex-center {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}
.flex-center.right {
right: 0px;
}
.sidebar-content {
position: absolute;
width: 90%;
font-family: Arial, Helvetica, sans-serif;
color: gray;
}
.sidebar-toggle {
position: absolute;
width: 2em; /* Increased width */
height: 2.5em; /* Increased height */
font-size: 1.5em; /* Increased font size */
overflow: visible;
display: flex;
justify-content: center;
align-items: center;
top:auto;
left:auto;
}
.sidebar-toggle.right {
left: -1.8em;
}
.sidebar-toggle:hover {
color: #0aa1cf;
cursor: pointer;
}
.sidebar {
transition: transform 1s;
z-index: 1;
width: 215px;
height: 300px;
}
.right.collapsed {
transform: translateX(215px);
}
.bookmarks div[style*="font-weight: bold"] {
margin-top: 10px; /* Adjust this value to increase/decrease the space */
}
#loading {
/* Chosen to contrast with the sidebar colors, since it's rendered above the sidebar on small enough viewports. */
background: white;
border-radius: 4px;
padding: 1rem;
margin: auto;
z-index: 999; /** Needs to be larger than the map, sidebar, and other future elements. */
}
/* mapbox overrides */
button.mapboxgl-popup-close-button {
padding: 4px 8px;
font-size: 24px;
}
#tile-style-control {
display: flex;
justify-content: center;
align-items: center;
height: 64px;
width: 64px;
border-top-right-radius: 0;
border-top-left-radius: 0;
cursor: pointer;
}
#tile-style-control::after {
content: "^";
position: absolute;
top: -16px;
left: 0;
display: flex;
justify-content: center;
align-items: center;
height: 16px;
width: 100%;
padding: 8px;
background-color: lightgray;
font-weight: 700;
}
#tile-style-control button {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100%;
width: 100%;
z-index: 3;
}
#tile-style-menu {
display: flex;
flex-direction: column;
position: absolute;
top: 0;
left: 0;
width: 100%;
background-color: white;
opacity: 0;
transition: all ease-in-out 500ms;
z-index: 2;
}
#tile-style-menu.visible {
opacity: 1;
transform: translateY(-100%);
}
#tile-style-menu div {
display: flex;
}
#active-label::first-letter {
text-transform: uppercase;
}
/* SEARCH BAR */
#search-bar-container {
position: absolute;
top: 16px;
left: 16px;
display: flex;
padding: 8px 16px;
background-color: white;
border-radius: 16px;
}
#search-bar-container input {
border: none;
border-bottom: 2px solid gray;
z-index: 3;
}
#search-bar-container button {
padding: 4px 8px;
margin-right: -8px;
}
#search-bar-container button svg {
height: 24px;
width: 24px;
}
#search-bar-container #search-bar-error {
position: absolute;
top: 32px;
padding: 16px;
left: 0;
background-color: white;
width: 100%;
z-index: 2;
opacity: 0;
transition: opacity ease-in-out 500ms;
}
/* END SEARCH BAR */