2019-07-22 14:46:07 +00:00
|
|
|
@import "../../node_modules/leaflet/dist/leaflet.css";
|
|
|
|
/** 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),
|
|
|
|
url(../logo-small.png),
|
|
|
|
url(../logo.png),
|
|
|
|
url(../logo.svg);
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body { font-size: 100%; }
|
|
|
|
body {
|
|
|
|
display: grid;
|
|
|
|
|
|
|
|
grid-template-columns: 10em auto 10em;
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
grid-template-areas: ". header ."
|
|
|
|
". . .";
|
|
|
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
margin: 0; padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > h1 {
|
|
|
|
grid-area: header;
|
|
|
|
justify-self: center;
|
|
|
|
align-self: start;
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
padding: 0.25em 0.45em;
|
|
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
position: absolute;
|
|
|
|
top: 0; bottom: 0; left: 0; right: 0;
|
|
|
|
|
|
|
|
z-index: 50;
|
|
|
|
}
|