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

56 lines
824 B
CSS

@font-face {
font-family: 'Noto Sans';
src: URL('font.ttf') format('truetype');
}
body {
margin: 0px;
padding: 0px;
font-family: Noto Sans;
background-color: #212121;
overflow-x: hidden;
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;
padding-bottom: 100px;
max-width: 1000px;
margin: auto;
text-align: center;
}
.content li {
text-align: left;
}
.content table {
margin-left: auto;
margin-right: auto;
text-align: left;
}
.content th, td {
padding-right: 25px;
}
.links img {
transform: translate(0, +20%);
display: inline;
}