Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # Font Face Mixin
  2.  
  3. @mixin font-face($font-family, $url) {
  4.  
  5. @font-face {
  6.  
  7. font-family: '#{$font-family}';
  8.  
  9. src: url('#{$url}.eot');
  10.  
  11. src: url('#{$url}.eot?#iefix') format('embedded-opentype'),
  12.  
  13. url('#{$url}.woff') format('woff'),
  14.  
  15. url('#{$url}.ttf') format('truetype'),
  16.  
  17. url('#{$url}.svg') format('svg');
  18.  
  19. font-weight: normal;
  20.  
  21. font-style: normal;
  22.  
  23. }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement