2024-03-05 21:58:07 +00:00
|
|
|
@font-face {
|
|
|
|
/* from https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraCode */
|
|
|
|
font-family: "FiraCode";
|
|
|
|
src: url('/assets/FiraCodeNerdFontMono-Regular.woff2');
|
2023-12-06 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
2024-03-07 05:29:15 +00:00
|
|
|
/* from Google Fonts, under the Open Font License */
|
2024-03-05 21:58:07 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: "Atkinson Hyperlegible";
|
2024-03-07 05:29:15 +00:00
|
|
|
src: local('Atkinson Hyperlegible'), url('/assets/AtkinsonHyperlegible-Regular.woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Atkinson Hyperlegible Bold";
|
|
|
|
src: local('Atkinson Hyperlegible Bold'), url('/assets/AtkinsonHyperlegible-Bold.woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Atkinson Hyperlegible Italic";
|
|
|
|
src: local('Atkinson Hyperlegible Italic'), url('/assets/AtkinsonHyperlegible-Italic.woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Atkinson Hyperlegible Bold Italic";
|
2024-03-07 14:13:07 +00:00
|
|
|
src: local('Atkinson Hyperlegible Bold Italic'), url('/assets/AtkinsonHyperlegible-BoldItalic.woff2');
|
2023-12-06 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
2023-08-06 00:33:50 +00:00
|
|
|
body {
|
2023-09-12 02:19:20 +00:00
|
|
|
color: #dadada;
|
2024-03-07 05:29:15 +00:00
|
|
|
background: #181a1b;
|
2023-08-06 00:33:50 +00:00
|
|
|
margin: 1em auto;
|
2023-09-12 02:19:20 +00:00
|
|
|
max-width: 90vw;
|
2023-08-06 00:33:50 +00:00
|
|
|
padding: 0 .62em;
|
2024-03-07 05:49:55 +00:00
|
|
|
}
|
|
|
|
|
2024-03-20 22:33:12 +00:00
|
|
|
li {
|
|
|
|
font-family: 'Atkinson Hyperlegible';
|
|
|
|
}
|
|
|
|
|
2024-03-07 14:13:07 +00:00
|
|
|
p,
|
|
|
|
footer {
|
2024-03-07 05:29:15 +00:00
|
|
|
font: 18px/1.35 'Atkinson Hyperlegible', sans-serif;
|
2023-03-22 20:37:47 +00:00
|
|
|
}
|
2023-08-06 00:33:50 +00:00
|
|
|
|
|
|
|
a:link,
|
|
|
|
a:visited {
|
|
|
|
color: #80c47b;
|
2023-03-22 20:37:47 +00:00
|
|
|
}
|
2023-08-06 00:33:50 +00:00
|
|
|
|
|
|
|
a:hover,
|
|
|
|
a:visited:hover {
|
|
|
|
color: #6bb794
|
2023-03-22 20:37:47 +00:00
|
|
|
}
|
2023-08-06 00:33:50 +00:00
|
|
|
|
2024-03-07 05:29:15 +00:00
|
|
|
h1 {
|
2024-03-07 14:13:07 +00:00
|
|
|
font: 36px/1.2 'Atkinson Hyperlegible Bold', sans-serif;
|
2024-03-07 05:29:15 +00:00
|
|
|
}
|
|
|
|
|
2023-08-06 00:33:50 +00:00
|
|
|
h2,
|
|
|
|
h3 {
|
2024-03-07 14:13:07 +00:00
|
|
|
font: 24px/1.2 'Atkinson Hyperlegible Bold', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font: 20px/1.2 'Atkinson Hyperlegible Bold', sans-serif;
|
2023-08-06 00:33:50 +00:00
|
|
|
}
|
|
|
|
|
2024-03-07 05:42:03 +00:00
|
|
|
code {
|
|
|
|
background: #0e0f0f;
|
|
|
|
border-radius: .2em;
|
|
|
|
padding: .125em;
|
|
|
|
}
|
|
|
|
|
2023-05-11 18:58:01 +00:00
|
|
|
wrap {
|
|
|
|
word-wrap: break-word
|
2023-08-28 14:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-device-width: 1200px) {
|
|
|
|
h1 {
|
|
|
|
line-height: 1.2;
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
2023-09-12 02:19:20 +00:00
|
|
|
|
2023-08-28 14:30:40 +00:00
|
|
|
h2 {
|
|
|
|
line-height: 1.2;
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
body {
|
|
|
|
max-width: none
|
|
|
|
}
|
2023-10-10 15:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
text-align: center;
|
2023-12-06 17:44:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: 3px solid #59997a;
|
|
|
|
padding-left: 1em;
|
|
|
|
margin-left: 0.5;
|
2023-08-06 00:33:50 +00:00
|
|
|
}
|