CSS: Use font-family variable, apply font-family to h1 tag

This commit is contained in:
cat 2025-04-07 04:25:46 +00:00
parent e82e6f7117
commit 75fa5bb3ee

View File

@ -25,6 +25,10 @@ body {
font-size: 1rem; font-size: 1rem;
} }
h1 {
font-family: var(--font-family);
}
hr { hr {
border: none; border: none;
border-top: 2px solid var(--accent-light); border-top: 2px solid var(--accent-light);
@ -105,7 +109,7 @@ a:visited {
} }
input { input {
font-family: monospace; font-family: var(--font-family);
} }
summary { summary {