fix broken glitch font

This commit is contained in:
2026-01-06 12:44:14 -08:00
parent 7751dbaa2f
commit 14df417373
2 changed files with 6 additions and 20 deletions

View File

@ -14,7 +14,6 @@
--color-text-main: #640054; --color-text-main: #640054;
--color-text-header: #185370; --color-text-header: #185370;
--font-family: "HK Grotesk";
} }
/* Basic page style resets */ /* Basic page style resets */
@ -25,19 +24,6 @@
display: none !important; display: none !important;
} }
/* Import fonts */
@font-face {
font-family: HK Grotesk;
src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Regular.otf?v=1603136326027")
format("opentype");
}
@font-face {
font-family: HK Grotesk;
font-weight: bold;
src: url("https://cdn.glitch.me/605e2a51-d45f-4d87-a285-9410ad350515%2FHKGrotesk-Bold.otf?v=1603136323437")
format("opentype");
}
/* Navigation */ /* Navigation */
#top-nav { #top-nav {
position: sticky; position: sticky;
@ -72,7 +58,7 @@
/* Body */ /* Body */
body { body {
font-family: var(--font-family); font-family: sans-serif;
background-color: light-dark(var(--color-bg-light), var(--color-bg-dark)); background-color: light-dark(var(--color-bg-light), var(--color-bg-dark));
color: light-dark(var(--color-text-light), var(--color-text-dark)); color: light-dark(var(--color-text-light), var(--color-text-dark));
} }