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
speedie c5b760bb52 Add icons for index links
Also remove FAQ, because it's useless.
2023-06-25 02:09:26 +02:00

33 lines
466 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%)
}