blob: d66db40501a7d3088c519e87e1e1a656ecc6844f (
plain)
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
|
@import "~bootstrap/dist/css/bootstrap.css";
@import "~bootstrap-icons/font/bootstrap-icons.css";
@import "~ol/ol.css";
html, body {
margin: 0;
height: 100%;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
#layer-selection-btn {
right: .5em;
top: .5em;
}
.map-dialog-hidden {
display: none;
}
.map-dialog {
top: .5em;
right: calc(.5em + 1.375em + 2px + .2em);
background: var(--ol-partial-background-color);
border: 1px solid var(--ol-subtle-background-color);
padding: 1ex;
}
@media screen and (max-width: 500px) {
#layer-selection-btn {
display: none;
}
}
|