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

25 lines
316 B
CSS
Raw Normal View History

2022-11-23 10:58:43 +01:00
body {
2023-01-21 00:49:58 +01:00
margin: 0px;
padding: 0px;
2022-11-23 10:58:43 +01:00
font-family: Monospace;
background-color: #0c0c11;
color: #f0eee4;
}
pre {
background-color: #222222;
width: fit-content;
padding: 5px;
border-left: 2px solid #cccccc;
}
a {
color: #6666ff;
transition: 0.1s;
}
a:hover {
color: #ccccff;
}
2023-01-21 00:49:58 +01:00
.content {
padding: 2px;
}