2019-08-15 17:40:13 +00:00
|
|
|
// Font-face stylesheet
|
|
|
|
|
|
|
|
// Directory of hosted font
|
|
|
|
@font-directory: 'fonts/';
|
|
|
|
|
|
|
|
@font-face {
|
2019-12-26 10:21:50 +00:00
|
|
|
font-family: 'Roboto';
|
2020-08-07 05:32:07 +00:00
|
|
|
src: url( '@{font-directory}RobotoVF.woff2' ) format( 'woff2-variations' );
|
2020-08-08 04:24:42 +00:00
|
|
|
/* stylelint-disable font-weight-notation */
|
2020-08-07 18:30:07 +00:00
|
|
|
font-weight: 100 900;
|
2020-08-08 04:24:42 +00:00
|
|
|
/* stylelint-enable font-weight-notation */
|
2019-12-26 10:21:50 +00:00
|
|
|
font-style: normal;
|
|
|
|
font-display: swap;
|
2019-08-15 17:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
2019-12-26 10:21:50 +00:00
|
|
|
font-family: 'Roboto';
|
2020-08-07 05:32:07 +00:00
|
|
|
src: url( '@{font-directory}Roboto-ItalicVF.woff2' ) format( 'woff2-variations' );
|
2020-08-08 04:24:42 +00:00
|
|
|
/* stylelint-disable font-weight-notation */
|
2020-08-07 18:30:07 +00:00
|
|
|
font-weight: 100 900;
|
2020-08-08 04:24:42 +00:00
|
|
|
/* stylelint-enable font-weight-notation */
|
2019-12-26 10:21:50 +00:00
|
|
|
font-style: italic;
|
|
|
|
font-display: swap;
|
2020-08-07 05:33:15 +00:00
|
|
|
}
|