79 lines
915 B
CSS
Raw Normal View History

2022-08-17 14:27:37 +02:00
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
}
2022-08-29 10:38:42 +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 {
2022-08-29 10:38:42 +02:00
content: '';
2022-08-17 14:27:37 +02:00
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;
}
main {
2022-08-29 10:38:42 +02:00
min-height: calc(100vh - 15em);
}
2022-08-29 10:38:42 +02:00
#map {
height: 50vh;
}
2022-08-29 10:38:42 +02:00
nav {}
nav li {
2022-08-29 10:38:42 +02:00
list-style: none;
}
nav ul {
2022-08-29 10:38:42 +02:00
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.none {
2022-08-29 10:38:42 +02:00
display: none;
}
2022-08-29 10:38:42 +02:00
.species span {
margin-left: 1em;
}