39 lines
503 B
CSS
39 lines
503 B
CSS
@import "node_modules/ol/ol.css";
|
|
|
|
html, body {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
#map {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
img#logo {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
width: 256px;
|
|
height: auto;
|
|
}
|
|
|
|
lightning-widget {
|
|
display: block;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
width: 200px;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
lightning-widget {
|
|
display: block;
|
|
position: absolute;
|
|
right: 10px;
|
|
width: auto;
|
|
}
|
|
}
|