first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
.mapster-map-container {
display: flex;
}
.mapster-map-container > div {
width: 50%;
}
.mapster-map-container .mapster-map-input-container {
padding-left: 10px;
padding-right: 10px;
}
.mapster-map-container .mapster-map-input-container .button-container {
text-align: right;
margin-top: 10px;
}
.mapster-map-container .mapster-map-input-container .point-inputs {
display: flex;
margin-bottom: 5px;
}
.mapster-map-container #finish-drawing div {
margin-top: 10px;
display: none;
}
.mapster-map-container .mapster-map-line {
display: flex;
margin-top: 10px;
margin-bottom: 10px;
font-size: 15px;
font-weight: bold;
}
.mapster-map-container hr {
margin-top: 10px;
margin-bottom: 10px;
width: 90%;
}
.mapster-map-container .mapster-mini-buttons {
float: right;
font-size: 10px;
margin-left: 5px;
border: thin solid #ccc;
padding: 2px 3px;
cursor: pointer;
}
#draw-single-polygon, #draw-single-line {
display : none;
}
#mapster-geocoder-results {
position: absolute;
background: white;
margin-top: 0px;
list-style-type: none;
padding: 0px;
margin: 0px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border: thin solid #eee;
z-index: 1000;
}
#mapster-geocoder-results li {
border-bottom: thin solid #ccc;
padding: 5px;
margin: 0;
cursor: pointer;
}
#mapster-geocoder-results li:hover {
background: #eee;
}