From 7b8ad0485909d58c5a6b23cf008997802695c0f5 Mon Sep 17 00:00:00 2001 From: Kaj Forney Date: Tue, 21 Feb 2023 19:06:20 -0700 Subject: [PATCH] Fix font fallbacks. --- css/main.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/main.css b/css/main.css index 751f965..fdc460e 100644 --- a/css/main.css +++ b/css/main.css @@ -313,25 +313,25 @@ iframe[src*=itch] { } @font-face { - font-family: VT323, monospace; + font-family: VT323; font-display: swap; src: url("https://kforney.github.io/fonts/VT323-Regular.ttf"); } @font-face { - font-family: Oswald, "DejaVu Sans", sans-serif; + font-family: Oswald, "DejaVu Sans"; font-display: swap; src: url("https://kforney.github.io/fonts/Oswald-Regular.ttf"); } @font-face { - font-family: 'IBM Plex Mono', monospace; + font-family: 'IBM Plex Mono'; font-display: swap; src: url("https://kforney.github.io/fonts/IBMPlexMono-Regular.ttf"); } @font-face { - font-family: 'IBM Plex Sans', sans-serif; + font-family: 'IBM Plex Sans'; font-display: swap; src: url("https://kforney.github.io/fonts/IBMPlexSans-Regular.ttf"); }