Compare commits

..

2 commits

Author SHA1 Message Date
68b6f46939 Oops, fix typo blocking non-bold-or-italic Delicious font from loading 2024-09-09 21:45:52 -07:00
cf6a19a7fc Use Noto Sans as a fallback if Delicious fails to load
This shouldn't ever be an issue in practice? I just noticed it because
something funny is going on with the `#userbar` element specifically
not using the Delicious font, and so I figured, hey, this simulates a
very real possible scenario, I'd rather use our consistent sans font
in this case!
2024-09-09 21:44:39 -07:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
/* A font by Jos Buivenga (exljbris) -> www.exljbris.nl */ /* A font by Jos Buivenga (exljbris) -> www.exljbris.nl */
@font-face { @font-face {
font-family: Delicious; font-family: Delicious;
src: local("Delicious"), url("<%= font_path "Delicious-Roman.otf" %>)"); src: local("Delicious"), url("<%= font_path "Delicious-Roman.otf" %>");
} }
@font-face { @font-face {

View file

@ -18,7 +18,7 @@ $error-color: #8a1f11
$error-bg-color: #fbe3e4 $error-bg-color: #fbe3e4
$error-border-color: #fbc2c4 $error-border-color: #fbc2c4
$header-font: Delicious, Helvetica, Arial, Verdana, sans-serif $header-font: Delicious, "Noto Sans", Helvetica, Arial, Verdana, sans-serif
$main-font: "Noto Sans", Helvetica, Arial, Verdana, sans-serif $main-font: "Noto Sans", Helvetica, Arial, Verdana, sans-serif
$text-font: "Noto Serif", Georgia, "Times New Roman", Times, serif $text-font: "Noto Serif", Georgia, "Times New Roman", Times, serif