mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-01-07 04:30:27 -05:00
14 lines
427 B
SCSS
14 lines
427 B
SCSS
|
|
$font: 'roboto';
|
|
|
|
@mixin roboto-font($weight, $style) {
|
|
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
src: url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.woff2) format('woff2'),
|
|
url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.woff) format('woff'),
|
|
url(/roboto/fonts/#{$font}-#{$weight}-#{$style}.ttf) format('truetype');
|
|
font-weight: $weight;
|
|
font-style: $style;
|
|
};
|
|
}; |