2
0

_mixins.fonts.scss 574 B

1234567891011121314151617181920212223
  1. /*
  2. NB: Due to Wagtail's browser support the following @font-face formats are required:
  3. - WOFF2 For modern browsers
  4. This example is all we need now:
  5. @font-face {
  6. font-family: 'MyWebFont';
  7. src: url('myfont.woff2') format('woff2');
  8. }
  9. See https://css-tricks.com/snippets/css/using-font-face/ for more information.
  10. */
  11. @mixin webfont($fontname, $filestub, $weight, $style:normal) {
  12. @font-face {
  13. font-family: '#{$fontname}';
  14. src: url('#{$font-root}#{$filestub}.woff2') format('woff2');
  15. font-weight: $weight;
  16. font-style: $style;
  17. }
  18. }