From c6b58d5d4354c89ba3f2e59f472b5e4409a5cae6 Mon Sep 17 00:00:00 2001 From: askiiart Date: Wed, 6 Mar 2024 23:49:55 -0600 Subject: [PATCH] apparently if you specify the font in body it can't be overridden??? --- style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 9a45813..8f2364e 100755 --- a/style.css +++ b/style.css @@ -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; }