2022-08-17 14:27:37 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2022-08-24 18:37:57 +02:00
|
|
|
body > * {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
2022-08-17 14:27:37 +02:00
|
|
|
.link {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 5px 0;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link:after {
|
|
|
|
content: '';
|
|
|
|
height: 1px;
|
|
|
|
display: block;
|
|
|
|
border-bottom: 2px dotted darkblue;
|
|
|
|
width: 0;
|
|
|
|
-webkit-transition: width 0.2s;
|
|
|
|
transition: width 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover:after {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.author a {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
color: white;
|
|
|
|
background-color: black;
|
|
|
|
text-align: center;
|
|
|
|
width: 100vw;
|
|
|
|
padding: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer .link:after {
|
|
|
|
border-bottom: 2px dotted white;
|
2022-08-24 18:37:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
min-height: calc(100vh - 15em);
|
|
|
|
}
|
|
|
|
|
|
|
|
#map { height: 50vh; }
|
|
|
|
|
|
|
|
nav {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
nav li {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
}
|
2022-08-28 09:14:02 +02:00
|
|
|
|
|
|
|
.none {
|
|
|
|
display: none;
|
|
|
|
}
|