Created
March 27, 2012 17:47
-
-
Save erotte/2218312 to your computer and use it in GitHub Desktop.
SASS Font includer
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
// Use COMPASS font-url() helper here | |
= fontsrc($name, $filename, $weight:400, $style:normal) | |
@font-face | |
font-family: $name | |
src: font-url('#{$filename}.eot') | |
src: local('☺'), font-url('#{$filename}.woff') format('woff'), font-url('#{$filename}.ttf') format('truetype'), font-url('#{$filename}.svg#ab12c33') format('svg') | |
font-weight: $weight | |
font-style: $style |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment