2022-03-12 23:44:22 +02:00
|
|
|
@import url("https://cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.min.css");
|
|
|
|
|
2022-03-11 13:35:37 +02:00
|
|
|
:root {
|
2022-03-12 22:48:33 +02:00
|
|
|
color-scheme: dark;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
2022-03-12 22:48:33 +02:00
|
|
|
background-color: #262220;
|
|
|
|
color: #f9f6e8;
|
2022-03-12 23:44:22 +02:00
|
|
|
font-family: Hack, hack, monospace;
|
2022-03-11 13:35:37 +02:00
|
|
|
scrollbar-width: none;
|
|
|
|
-ms-overflow-style: none;
|
2022-03-12 22:48:33 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
scroll-behavior: smooth;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2022-03-12 22:48:33 +02:00
|
|
|
margin: auto;
|
|
|
|
padding: 2rem;
|
2022-03-12 23:44:22 +02:00
|
|
|
max-width: 1250px;
|
2022-03-12 22:48:33 +02:00
|
|
|
min-height: 100vh;
|
|
|
|
text-rendering: optimizeSpeed;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2022-03-12 22:48:33 +02:00
|
|
|
text-align: center;
|
|
|
|
margin: 1em;
|
2022-03-12 23:44:22 +02:00
|
|
|
font-size: 2em;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2022-03-12 22:48:33 +02:00
|
|
|
margin: 0.5em;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2022-03-12 22:48:33 +02:00
|
|
|
text-decoration: none;
|
|
|
|
text-shadow: 0px 0px 6px white;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.info-bar {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-03-12 23:44:22 +02:00
|
|
|
.blog-content {
|
|
|
|
padding: 0.3em;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
2022-03-12 22:48:33 +02:00
|
|
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
|
|
|
animation-duration: 0.01ms !important;
|
|
|
|
animation-iteration-count: 1 !important;
|
|
|
|
transition-duration: 0.01ms !important;
|
|
|
|
scroll-behavior: auto !important;
|
|
|
|
}
|
|
|
|
}
|