27 lines
431 B
SCSS
27 lines
431 B
SCSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border: 0 none transparent;
|
||
|
|
||
|
box-sizing: border-box;
|
||
|
scroll-behavior: smooth;
|
||
|
|
||
|
font-family: 'Manrope Regular', sans-serif;
|
||
|
font-size: .85rem;
|
||
|
line-height: 1.5;
|
||
|
|
||
|
color: var(--text);
|
||
|
}
|
||
|
|
||
|
html, body {
|
||
|
color: var(--text);
|
||
|
background-color: var(--surface);
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
background-color: var(--grey3);
|
||
|
}
|
||
|
|
||
|
header, h1, h2, h3, h4, h5, h6 {
|
||
|
color: var(--primary);
|
||
|
}
|