73 lines
1.6 KiB
SCSS
73 lines
1.6 KiB
SCSS
|
// main: style.scss
|
||
|
|
||
|
// ===========================================================================
|
||
|
// FONTS
|
||
|
// ===========================================================================
|
||
|
|
||
|
// Nunito
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-Regular.ttf) format('truetype');
|
||
|
font-weight: 400;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-Italic.ttf) format('truetype');
|
||
|
font-weight: 400;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-Medium.ttf) format('truetype');
|
||
|
font-weight: 500;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-MediumItalic.ttf) format('truetype');
|
||
|
font-weight: 500;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-SemiBold.ttf) format('truetype');
|
||
|
font-weight: 600;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-SemiBoldItalic.ttf) format('truetype');
|
||
|
font-weight: 600;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-Bold.ttf) format('truetype');
|
||
|
font-weight: 700;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Nunito';
|
||
|
src: url(../fonts/nunito/Nunito-BoldItalic.ttf) format('truetype');
|
||
|
font-weight: 700;
|
||
|
font-style: italic;
|
||
|
}
|
||
|
|
||
|
// Gloria Hallelujah
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Gloria Hallelujah';
|
||
|
src: url(../fonts/gloria-hallelujah/GloriaHallelujah-Regular.ttf) format('truetype');
|
||
|
font-weight: 400;
|
||
|
font-style: normal;
|
||
|
}
|