16 lines
411 B
SCSS
16 lines
411 B
SCSS
@use "sass:math";
|
|
|
|
@mixin font($font_name, $file_name, $weight, $style) {
|
|
@font-face {
|
|
font-family: $font_name;
|
|
font-display: swap;
|
|
src: url("../fonts/#{$file_name}.woff") format("woff"), url("../fonts/#{$file_name}.woff2") format("woff2");
|
|
font-weight: #{$weight};
|
|
font-style: #{$style};
|
|
}
|
|
}
|
|
|
|
@function rem($pixels) {
|
|
@return math.div($pixels, 18) * 1rem;
|
|
}
|