soundbirder/public/stylesheets/game.css

67 lines
815 B
CSS
Executable File

header h1 {
margin-bottom: 1em;
}
.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 .link:after {
border-bottom: 2px dotted white;
}
#map {
min-height: 60vh;
}
.invit {
min-height: 60vh;
}
.species span {
margin-left: 1em;
}
.species .sci {
font-style: italic;
}
.none {
display: none;
}
.proposal-button {
margin: 1em 0;
}
.game-loading {
margin: 0;
position: absolute;
top: 50%;
left: calc(50% - 4em);
transform: translateY(-50%);
}