Move the fonts to a variabele

This commit is contained in:
h3artbl33d 2025-03-08 18:03:20 +01:00
parent b0687f37c3
commit a71209e6c1
2 changed files with 6 additions and 3 deletions

View file

@ -6,7 +6,7 @@
body{ body{
background-color: var(--white); background-color: var(--white);
font-family: 'Open Sans', sans-serif; font-family: var(--mainfont), sans-serif;
} }
a { a {

View file

@ -8,6 +8,9 @@
--darkblue: #00324a; --darkblue: #00324a;
--green: #04AA6D; --green: #04AA6D;
--mute: #bbbbbb; --mute: #bbbbbb;
/* Typography */
--mainfont: 'Open Sans';
--codefont: 'Fira Mono';
/* Breakpoints */ /* Breakpoints */
--fullwidth: 100%; --fullwidth: 100%;
--article: 53rem; --article: 53rem;