1
Fork 0

global font spec

This commit is contained in:
Jan-Erik Rediger 2025-03-11 22:15:45 +01:00
parent 533c506eea
commit 1b3ea99b50

View file

@ -24,8 +24,12 @@
font-weight: bold; font-weight: bold;
} }
:root {
--font: Crimson,Palatino,Georgia,Lucida Bright,Book Antiqua,serif;
}
html{ html{
font-family:Crimson,Palatino,Georgia,Lucida Bright,Book Antiqua,serif; font-family: var(--font);
font-size:16px; font-size:16px;
line-height:1.5rem line-height:1.5rem
} }
@ -285,11 +289,11 @@ blockquote p {
} }
h2 { h2 {
font: 600 30px "Crimson", Georgia, serif; font: 600 30px var(--font);
} }
h3 { h3 {
font: 600 20px "Crimson", Georgia, serif; font: 600 20px var(--font);
} }
.clearfix:after { .clearfix:after {