29 lines
454 B
SCSS
29 lines
454 B
SCSS
|
// FONTS
|
||
|
// Define how looks the text
|
||
|
|
||
|
$fontsize: 4.5mm;
|
||
|
|
||
|
$fontweight_big: 300;
|
||
|
$fontweight_base: 400;
|
||
|
$fontweight_bold: 600;
|
||
|
$fontweight_hyper: 800;
|
||
|
|
||
|
$basefont: Inter,
|
||
|
-apple-system,
|
||
|
BlinkMacSystemFont,
|
||
|
'Segoe UI',
|
||
|
Cantarell,
|
||
|
Roboto,
|
||
|
Oxygen,
|
||
|
Ubuntu,
|
||
|
'Fira Sans',
|
||
|
'Droid Sans',
|
||
|
'Helvetica Neue',
|
||
|
sans-serif;
|
||
|
$titlefont: Amatic SC, sans-serif;
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Amatic SC';
|
||
|
src: url('fonts/AmaticSC-Regular.ttf');
|
||
|
font-weight: 400;
|
||
|
}
|