34 lines
No EOL
718 B
SCSS
34 lines
No EOL
718 B
SCSS
// FONTS
|
|
// Define how looks the text
|
|
|
|
$fontsize: 4.5mm;
|
|
$fontsize-small:4.25mm;
|
|
|
|
$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: 'Comic Neue Bold Italic', sans-serif;
|
|
|
|
@font-face {
|
|
font-family: 'Comic Neue Bold Italic';
|
|
src: local('Comic Neue Bold Italic'), local('ComicNeue-BoldItalic'),
|
|
url('../fonts/ComicNeue-BoldItalic.woff2') format('woff2'),
|
|
url('../fonts/ComicNeue-BoldItalic.woff') format('woff');
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
} |