2019-01-17 12:48:09 +00:00
|
|
|
@import "../../node_modules/leaflet/dist/leaflet.css";
|
2019-01-17 16:13:27 +00:00
|
|
|
|
2019-01-17 14:07:31 +00:00
|
|
|
@import "../../node_modules/leaflet-fullscreen/dist/leaflet.fullscreen.css";
|
2019-01-17 13:56:25 +00:00
|
|
|
|
2019-01-17 16:13:27 +00:00
|
|
|
@import "../../node_modules/leaflet.markercluster/dist/MarkerCluster.css";
|
|
|
|
@import "../../node_modules/leaflet.markercluster/dist/MarkerCluster.Default.css";
|
|
|
|
|
2019-01-26 22:14:18 +00:00
|
|
|
@import "./nanomodal.css";
|
2019-01-26 16:49:25 +00:00
|
|
|
@import "./popup.css";
|
|
|
|
|
2019-01-20 14:18:53 +00:00
|
|
|
/** Ensure that some assets are copied that aren't by default **/
|
|
|
|
.non-existent {
|
|
|
|
background: url(../../node_modules/leaflet/dist/images/marker-icon-2x.png),
|
|
|
|
url(../../node_modules/leaflet/dist/images/marker-shadow.png);
|
|
|
|
}
|
|
|
|
|
2019-01-17 14:13:22 +00:00
|
|
|
html, body { font-size: 100%; }
|
|
|
|
body {
|
2019-01-17 16:38:15 +00:00
|
|
|
display: grid;
|
|
|
|
|
|
|
|
grid-template-columns: 10em auto 10em;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
grid-template-areas: ". header ."
|
|
|
|
". . .";
|
|
|
|
|
2019-01-17 14:13:22 +00:00
|
|
|
font-family: sans-serif;
|
|
|
|
margin: 0; padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2019-01-17 16:38:15 +00:00
|
|
|
grid-area: header;
|
|
|
|
justify-self: center;
|
|
|
|
align-self: start;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
padding: 0.25em 0.45em;
|
2019-01-17 14:13:22 +00:00
|
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.5);
|
|
|
|
border-radius: 0 0 0.25em 0.25em;
|
2019-01-17 16:38:15 +00:00
|
|
|
|
2019-01-17 16:39:47 +00:00
|
|
|
z-index: 100;
|
2019-01-17 14:13:22 +00:00
|
|
|
}
|
|
|
|
|
2019-01-17 13:56:25 +00:00
|
|
|
main {
|
|
|
|
position: absolute;
|
|
|
|
top: 0; bottom: 0; left: 0; right: 0;
|
2019-01-17 14:13:22 +00:00
|
|
|
|
2019-01-17 16:39:47 +00:00
|
|
|
z-index: 50;
|
2019-01-17 13:56:25 +00:00
|
|
|
}
|
2019-01-18 21:25:30 +00:00
|
|
|
|
|
|
|
.sms-panel {
|
|
|
|
top: initial !important; bottom: 0;
|
|
|
|
z-index: 100 !important;
|
|
|
|
}
|
2019-01-18 22:43:28 +00:00
|
|
|
|
2019-02-01 18:40:00 +00:00
|
|
|
button, a { cursor: pointer; }
|
2019-01-20 20:53:12 +00:00
|
|
|
button.selected {
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
2019-02-10 14:45:15 +00:00
|
|
|
|
|
|
|
.working { cursor: progress; }
|