streckenkarte/frontend/common/styles.css
Antonia Pérez-Cerezo d91e0bd8ad Fix attribution, add a detector for sharp angles
The sharp angle detector prevents common errors such as accidentally
taking a wrong turn or switching to the wrong track, especially in
tram networks
2025-05-01 21:07:45 +02:00

29 lines
485 B
CSS

body {
margin: 0;
padding: 0;
}
#map {
width: 100%;
height: 100vh;
}
.legend {
background-color: #fff;
border-radius: 0.5em;
border: 2px solid grey;
padding: 0.5em;
}
.dot {
height: 1em;
width: 1em;
border-radius: 50%;
display: inline-block;
margin-right: 0.7em;
}
img.red { filter: hue-rotate(120deg); }
img.green { filter: hue-rotate(-120deg); }
img.darkred { filter: hue-rotate(160deg); }
img.warn { filter: hue-rotate(160deg); }
div.edit-ui {
display: none;
}