course example

This commit is contained in:
luptmoor
2026-04-15 14:23:12 +02:00
parent d176eb2ec5
commit a8ab95ff3a
72 changed files with 6461 additions and 57 deletions

41
styles.css Normal file
View File

@@ -0,0 +1,41 @@
#mapdiv {
height: 100vh;
}
.popup-container {
width: 80vw; /* 80% of the viewport width */
max-width: 300px; /* Maximum width */
height: 60vh; /* 60% of the viewport height */
max-height: 350px; /* Maximum height */
padding: 10px; /* Add some padding */
box-sizing: border-box; /* Ensure padding is included in width/height */
}
.popup-form-group {
display: flex; /* popup-label und popup-input nebeneinander statt untereinander */
align-items: center;
margin-bottom: 15px;
}
.popup-label {
flex: 1;
margin-right: 10px;
}
.popup-input {
flex: 2;
}
.popup-button-group {
display: flex;
justify-content: space-between;
}
.popup-button {
flex: 1;
margin-right: 10px;
}
.popup-button:last-child {
margin-right: 0;
}