73 lines
No EOL
930 B
CSS
73 lines
No EOL
930 B
CSS
body {
|
|
margin: 0px !important;
|
|
}
|
|
|
|
|
|
#container {
|
|
display: flexbox;
|
|
}
|
|
|
|
|
|
#map {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
|
|
.button-image {
|
|
width: 5px;
|
|
height: auto;
|
|
}
|
|
|
|
|
|
.leaflet-popup-content>img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
#addMarkerBtn {
|
|
z-index: 1000;
|
|
background: rgb(255, 255, 255);
|
|
width: 40px;
|
|
height: 38px;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin-top: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
|
|
#markerFormContainer {
|
|
display: none;
|
|
z-index: 999;
|
|
position: absolute;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
left: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
width: 50vw;
|
|
background-color: white;
|
|
}
|
|
|
|
|
|
#markerForm {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
margin: 20px 10px;
|
|
}
|
|
|
|
|
|
#markerForm > button {
|
|
margin-left: auto;
|
|
}
|
|
|
|
|
|
#remainingForm {
|
|
display: none;
|
|
} |