apparently if you specify the font in body it can't be overridden???

This commit is contained in:
askiiart 2024-03-06 23:49:55 -06:00
parent 7726127ffe
commit c6b58d5d43
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67

View file

@ -18,7 +18,6 @@
@font-face {
font-family: "Atkinson Hyperlegible Italic";
src: local('Atkinson Hyperlegible Italic'), url('/assets/AtkinsonHyperlegible-Italic.woff2');
src: url('/assets/AtkinsonHyperlegible-BoldItalic.woff2');
}
@font-face {
@ -32,6 +31,9 @@ body {
margin: 1em auto;
max-width: 90vw;
padding: 0 .62em;
}
p {
font: 18px/1.35 'Atkinson Hyperlegible', sans-serif;
}