mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
b33c85a409
I clean up code to MediaWiki standards
21 lines
449 B
Plaintext
21 lines
449 B
Plaintext
// Font-face stylesheet
|
|
|
|
// Directory of hosted font
|
|
@font-directory: 'fonts/';
|
|
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
src: url( '@{font-directory}RobotoVF.woff2' ) format( 'woff2-variations' );
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
src: url( '@{font-directory}Roboto-ItalicVF.woff2' ) format( 'woff2-variations' );
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
font-display: swap;
|
|
}
|