Created
April 8, 2013 03:16
-
-
Save MikeMcChillin/5333999 to your computer and use it in GitHub Desktop.
Font-face compass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import compass/css3/font-face | |
$font-name: "myfont" | |
+font-face("#{$font-name}", font-files( "#{$font-name}.woff", "#{$font-name}.ttf", "#{$font-name}.svg"), "#{$font-name}.eot", 300, normal) | |
@mixin myfont | |
font-family: 'myfont', arial, sans-serif | |
font-weight: normal | |
// Usage | |
h1 | |
@include myfont |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment