This repository has been archived on 2024-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
speedie-page/css/main.css
Jacob b37c9162fa Navbar is now positioned above everything else.
Previously, icons would be positioned above the header if
`translate()` was used
2023-07-01 18:37:20 +02:00

34 lines
488 B
CSS

body {
margin: 0px;
padding: 0px;
font-family: Monospace;
background-color: #212121;
color: #f0eee4;
}
pre {
background-color: #222222;
width: fit-content;
padding: 5px;
border-left: 2px solid #cccccc;
}
a {
color: #89bfff;
text-decoration: none;
transition: 0.1s;
}
a:hover {
color: #ccccff;
text-decoration: underline;
}
.content {
padding: 5px;
max-width: 1000px;
margin: auto;
}
.links img {
transform: translate(0, +20%);
display: inline;
}