_icon-font.scss 797 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @font-face {
  2. font-family: 'slate';
  3. src:font-url('slate.eot?-syv14m');
  4. src:font-url('slate.eot?#iefix-syv14m') format('embedded-opentype'),
  5. font-url('slate.woff2?-syv14m') format('woff2'),
  6. font-url('slate.woff?-syv14m') format('woff'),
  7. font-url('slate.ttf?-syv14m') format('truetype'),
  8. font-url('slate.svg?-syv14m#slate') format('svg');
  9. font-weight: normal;
  10. font-style: normal;
  11. }
  12. %icon {
  13. font-family: 'slate';
  14. speak: none;
  15. font-style: normal;
  16. font-weight: normal;
  17. font-variant: normal;
  18. text-transform: none;
  19. line-height: 1;
  20. }
  21. %icon-exclamation-sign {
  22. @extend %icon;
  23. content: "\e600";
  24. }
  25. %icon-info-sign {
  26. @extend %icon;
  27. content: "\e602";
  28. }
  29. %icon-ok-sign {
  30. @extend %icon;
  31. content: "\e606";
  32. }
  33. %icon-search {
  34. @extend %icon;
  35. content: "\e607";
  36. }