Move the fonts to a variabele
This commit is contained in:
parent
b0687f37c3
commit
a71209e6c1
2 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
*{
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
|
@ -6,10 +6,10 @@
|
|||
|
||||
body{
|
||||
background-color: var(--white);
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-family: var(--mainfont), sans-serif;
|
||||
}
|
||||
|
||||
a{
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
--darkblue: #00324a;
|
||||
--green: #04AA6D;
|
||||
--mute: #bbbbbb;
|
||||
/* Typography */
|
||||
--mainfont: 'Open Sans';
|
||||
--codefont: 'Fira Mono';
|
||||
/* Breakpoints */
|
||||
--fullwidth: 100%;
|
||||
--article: 53rem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue