publik-base-theme/static/includes/fonts/_baloo2.scss

17 lines
485 B
SCSS

/* baloo 2 latin */
@mixin baloo-font($type, $weight) {
@font-face {
font-family: 'Baloo 2';
font-style: normal;
font-weight: $weight;
src: url('/static/fonts/baloo2/baloo-2-#{$type}.woff2') format('woff2'),
url('/static/fonts/baloo2/baloo-2-#{$type}.woff') format('woff');
}
}
@include baloo-font('regular', 400);
@include baloo-font('medium', 500);
@include baloo-font('semibold', 600);
@include baloo-font('bold', 700);
@include baloo-font('extrabold', 800);