Move the fonts to a variabele
This commit is contained in:
parent
b0687f37c3
commit
a71209e6c1
2 changed files with 6 additions and 3 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue