Guest User

Untitled

a guest
Nov 15th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. @mixin fontMixin($fontFamily, $path, $fontWeight: normal, $fontStyle: normal) {
  2. @font-face {
  3. font-family: $fontFamily;
  4. src: url('#{$path}.eot?#iefix') format('embedded-opentype'), url('#{$path}.otf') format('opentype'),
  5. url('#{$path}.woff') format('woff'), url('#{$path}.ttf') format('truetype'), url('#{$path}.svg##{$fontFamily}') format('svg');
  6. font-weight: $fontWeight;
  7. font-style: $fontStyle;
  8. }
  9. }
Add Comment
Please, Sign In to add comment