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

@ -1,4 +1,4 @@
*{ * {
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
@ -6,10 +6,10 @@
body{ body{
background-color: var(--white); background-color: var(--white);
font-family: 'Open Sans', sans-serif; font-family: var(--mainfont), sans-serif;
} }
a{ a {
text-decoration: none; text-decoration: none;
} }

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;