aboutsummaryrefslogtreecommitdiff
path: root/src_web/style/fonts/_font.scss
blob: 0687d02a72341a8009931d0b959a7187c4dccfc3 (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;
    }
}