44 lines
600 B
CSS
44 lines
600 B
CSS
@import "node_modules/ol/ol.css";
|
|
@import "node_modules/bootstrap/dist/css/bootstrap.min.css";
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
#map {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
.popover {
|
|
text-align: center;
|
|
}
|
|
|
|
.new-button {
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 1.25em;
|
|
width: fit-content;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.new-button > button {
|
|
padding: 1.25em;
|
|
width: fit-content;
|
|
line-height: 0.2em;
|
|
}
|
|
|
|
#centerPin {
|
|
position: fixed;
|
|
bottom: 50%;
|
|
right: calc(50% - 16px);
|
|
z-index: 1;
|
|
display: none;
|
|
}
|
|
|
|
#centerPin > svg {
|
|
left: -25%;
|
|
}
|