2023-08-21 23:29:52 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: "Lato Regular";
|
|
|
|
src: url("/lato/regular.ttf");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Lato Light";
|
|
|
|
src: url("/lato/light.ttf");
|
|
|
|
}
|
|
|
|
|
|
|
|
:root {
|
|
|
|
font-family: "Lato Light", sans-serif;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
font-family: "Lato Regular", sans-serif;
|
|
|
|
color: #ac5d48;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #a5391c;
|
|
|
|
padding-bottom: 0;
|
|
|
|
text-decoration: underline;
|
|
|
|
transition: color 0.15s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: #111;
|
|
|
|
background: white;
|
|
|
|
margin: 0;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
2024-06-24 12:09:14 +01:00
|
|
|
body nav {
|
2023-08-21 23:29:52 +01:00
|
|
|
display: flex;
|
|
|
|
background: #EEE;
|
|
|
|
padding: 5px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body footer {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body footer {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body main {
|
|
|
|
margin: 15px auto;
|
|
|
|
max-width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body pre {
|
|
|
|
overflow-x: scroll;
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .banner {
|
|
|
|
background-color: #ac5d48;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0 0 0 25px;
|
|
|
|
border-color: #a5391c;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 0 10px 10px 0;
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-family: "Lato Regular";
|
|
|
|
}
|
|
|
|
|
|
|
|
body .banner > *:first-child {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
2024-06-23 23:48:29 +01:00
|
|
|
body .columns {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .columns > *:not(:last-child) {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
2023-08-21 23:29:52 +01:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
|
|
|
color: white;
|
|
|
|
background: #111;
|
|
|
|
}
|
|
|
|
|
2024-06-24 12:09:14 +01:00
|
|
|
body nav {
|
2023-08-21 23:29:52 +01:00
|
|
|
background: #0C0C0C;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (orientation: portrait), (max-width: 900px) {
|
2024-06-24 12:09:14 +01:00
|
|
|
body nav {
|
2023-08-21 23:29:52 +01:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|