blob: 89b466cef66ef8e0ab695750bb5c2e97c9aadf96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
@mixin font($variant, $type, $weight, $style) {
@font-face {
font-family: '#{$variant}';
src: url('../fonts/#{$variant}/#{$variant}-#{$type}.ttf') format('truetype');
font-weight: $weight;
font-style: $style;
}
}
|