51 lines
757 B
CSS
51 lines
757 B
CSS
li ul {
|
|
/* Zorg ervoor dat de kinderelementen met hun bolletje onder de eerste letter van het vorige element staan. */
|
|
margin: 0.2vh 1ch;
|
|
padding: 0.2vh 1vw;
|
|
}
|
|
|
|
ul {
|
|
/* alternatieven "↪" */
|
|
list-style-type: symbols("⬉");
|
|
}
|
|
|
|
ul#wortel {
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.header h1 {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
|
|
font-min-size: 2vw;
|
|
font-size: 3vw;
|
|
position: relative;
|
|
}
|
|
|
|
.header img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
|
|
width: 10%;
|
|
height: 10%;
|
|
|
|
min-width: 2%;
|
|
min-height: 2%;
|
|
max-width: 20%;
|
|
max-height: 20%;
|
|
}
|
|
|
|
.header p {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.top-bar {
|
|
position: fixed;
|
|
top: 0;
|
|
}
|
|
|
|
#waarschuwing {
|
|
color: darkorange;
|
|
}
|