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
Raw Normal View History

2023-11-25 21:48:28 +01:00
@font-face {
font-family: 'Noto Sans';
src: URL('font.ttf') format('truetype');
}
2022-11-23 10:58:43 +01:00
body {
2023-01-21 00:49:58 +01:00
margin: 0px;
padding: 0px;
2023-11-25 21:48:28 +01:00
font-family: Noto Sans;
2023-04-19 10:07:35 +02:00
background-color: #212121;
2023-09-15 23:53:31 +02:00
overflow-x: hidden;
2022-11-23 10:58:43 +01:00
color: #f0eee4;
}
pre {
background-color: #222222;
width: fit-content;
padding: 5px;
border-left: 2px solid #cccccc;
}
a {
2023-04-19 10:07:35 +02:00
color: #89bfff;
2023-04-19 13:04:03 +02:00
text-decoration: none;
2022-11-23 10:58:43 +01:00
transition: 0.1s;
}
a:hover {
color: #ccccff;
2023-04-19 13:04:03 +02:00
text-decoration: underline;
2022-11-23 10:58:43 +01:00
}
2023-01-21 00:49:58 +01:00
.content {
2023-03-09 20:11:08 +01:00
padding: 5px;
2023-12-14 16:38:29 +01:00
padding-bottom: 100px;
max-width: 1000px;
margin: auto;
2023-12-04 12:14:36 +01:00
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;
2023-01-21 00:49:58 +01:00
}
.links img {
transform: translate(0, +20%);
display: inline;
}