ruscomap/public/css/map.css
2024-07-22 19:18:27 +02:00

62 lines
No EOL
984 B
CSS

body {
margin: 0px !important;
}
#container {
display: flexbox;
}
#map {
height: 100vh;
width: 100vw;
}
.leaflet-popup-content>img {
width: 100%;
height: 100%;
}
#addMarkerBtn {
/* border-radius: 50%; */
z-index: 1000;
background: white;
width: 30px;
height: 30px;
position: absolute;
top: 0;
/* Place the button 20px from the bottom */
right: 0;
/* Place the button 20px from the right */
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;
}