Normalize Cambria's font size, it's kinda small!

This commit is contained in:
Emi Matchu 2024-09-25 20:50:44 -07:00
parent 88740d6e44
commit 22c1cb29dd

View file

@ -3,6 +3,7 @@
--ui-font-family: system-ui, sans-serif; --ui-font-family: system-ui, sans-serif;
--heading-font-family: Delicious, system-ui, sans-serif; --heading-font-family: Delicious, system-ui, sans-serif;
--body-font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, serif; --body-font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, serif;
--body-font-size-adjust: 0.5; /* Cambria is kinda small! */
} }
body { body {
@ -115,6 +116,7 @@ article {
> :is(p, ul) { > :is(p, ul) {
font-family: var(--body-font-family); font-family: var(--body-font-family);
font-size-adjust: var(--body-font-size-adjust);
line-height: 1.4; line-height: 1.4;
} }