why was this indented using 8 spaces

why
This commit is contained in:
askiiart 2025-01-17 09:27:27 -06:00
parent b3f65e70c2
commit 9bac150b0b
Signed by untrusted user who does not match committer: askiiart
GPG key ID: 6A32977DAF31746A

View file

@ -1,110 +1,110 @@
@font-face { @font-face {
/* from https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraCode */ /* from https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/FiraCode */
font-family: "FiraCode"; font-family: "FiraCode";
src: 'FiraCode', url('/assets/FiraCodeNerdFontMono-Regular.woff2'); src: 'FiraCode', url('/assets/FiraCodeNerdFontMono-Regular.woff2');
} }
/* from Google Fonts, under the Open Font License */ /* from Google Fonts, under the Open Font License */
@font-face { @font-face {
font-family: "Atkinson Hyperlegible"; font-family: "Atkinson Hyperlegible";
src: 'Atkinson Hyperlegible', url('/assets/AtkinsonHyperlegible-Regular.woff2'); src: 'Atkinson Hyperlegible', url('/assets/AtkinsonHyperlegible-Regular.woff2');
} }
@font-face { @font-face {
font-family: "Atkinson Hyperlegible Bold"; font-family: "Atkinson Hyperlegible Bold";
src: 'Atkinson Hyperlegible Bold', url('/assets/AtkinsonHyperlegible-Bold.woff2'); src: 'Atkinson Hyperlegible Bold', url('/assets/AtkinsonHyperlegible-Bold.woff2');
} }
@font-face { @font-face {
font-family: "Atkinson Hyperlegible Italic"; font-family: "Atkinson Hyperlegible Italic";
src: 'Atkinson Hyperlegible Italic', url('/assets/AtkinsonHyperlegible-Italic.woff2'); src: 'Atkinson Hyperlegible Italic', url('/assets/AtkinsonHyperlegible-Italic.woff2');
} }
@font-face { @font-face {
font-family: "Atkinson Hyperlegible Bold Italic"; font-family: "Atkinson Hyperlegible Bold Italic";
src: 'Atkinson Hyperlegible Bold Italic', url('/assets/AtkinsonHyperlegible-BoldItalic.woff2'); src: 'Atkinson Hyperlegible Bold Italic', url('/assets/AtkinsonHyperlegible-BoldItalic.woff2');
} }
body { body {
color: #dadada; color: #dadada;
background: #181a1b; background: #181a1b;
margin: 1em auto; margin: 1em auto;
max-width: 90vw; max-width: 90vw;
padding: 0 .62em; padding: 0 .62em;
} }
li { li {
font-family: 'Atkinson Hyperlegible'; font-family: 'Atkinson Hyperlegible';
} }
p, p,
footer { footer {
font: 18px/1.35 'Atkinson Hyperlegible', sans-serif; font: 18px/1.35 'Atkinson Hyperlegible', sans-serif;
} }
a:link, a:link,
a:visited { a:visited {
color: #80c47b; color: #80c47b;
} }
a:hover, a:hover,
a:visited:hover { a:visited:hover {
color: #6bb794 color: #6bb794
} }
h1 { h1 {
font: 36px/1.2 'Atkinson Hyperlegible Bold', sans-serif; font: 36px/1.2 'Atkinson Hyperlegible Bold', sans-serif;
} }
h2, h2,
h3 { h3 {
font: 24px/1.2 'Atkinson Hyperlegible Bold', sans-serif; font: 24px/1.2 'Atkinson Hyperlegible Bold', sans-serif;
} }
h4 { h4 {
font: 20px/1.2 'Atkinson Hyperlegible Bold', sans-serif; font: 20px/1.2 'Atkinson Hyperlegible Bold', sans-serif;
} }
code { code {
background: #0e0f0f; background: #0e0f0f;
border-radius: .2em; border-radius: .2em;
padding: .125em; padding: .125em;
padding-left: 0.2em; padding-left: 0.2em;
font-size: 14px; font-size: 14px;
} }
wrap { wrap {
word-wrap: break-word word-wrap: break-word
} }
@media (max-device-width: 1200px) { @media (max-device-width: 1200px) {
h1 { h1 {
line-height: 1.2; line-height: 1.2;
font-size: 40px; font-size: 40px;
} }
h2 { h2 {
line-height: 1.2; line-height: 1.2;
font-size: 30px; font-size: 30px;
} }
body { body {
font-size: 20px; font-size: 20px;
} }
} }
@media print { @media print {
body { body {
max-width: none max-width: none
} }
} }
footer { footer {
text-align: center; text-align: center;
} }
blockquote { blockquote {
border-left: 3px solid #59997a; border-left: 3px solid #59997a;
padding-left: 1em; padding-left: 1em;
margin-left: 0.5; margin-left: 0.5;
} }