Guest User

Untitled

a guest
Oct 16th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. @mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: false ) {
  2. @font-face {
  3. font-family: $font-family;
  4. font-weight: $weight;
  5. font-style: $style;
  6.  
  7. @if $asset-pipeline == true {
  8. src: font-url('#{$file-path}.eot');
  9. src: font-url('#{$file-path}.eot?#iefix') format('embedded-opentype'), font-url('#{$file-path}.woff') format('woff'), font-url('#{$file-path}.ttf') format('truetype');
  10. }
  11. @else {
  12. src: url('#{$file-path}.eot');
  13. src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'), url('#{$file-path}.woff') format('woff'), url('#{$file-path}.ttf') format('truetype');
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment