16 lines
224 B
SCSS
Vendored
16 lines
224 B
SCSS
Vendored
// Fonts
|
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
|
|
|
|
$fontMain: 'Open Sans', sans-serif;
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
|
|
body {
|
|
font-family: $fontMain;
|
|
font-size: 1.6rem;
|
|
color: $font;
|
|
}
|
|
|