Skip to content

Instantly share code, notes, and snippets.

@Nitive
Forked from diogomoretti/fonts.styl
Last active November 12, 2015 08:57
Show Gist options
  • Save Nitive/62da4c6ed208c86f345b to your computer and use it in GitHub Desktop.
Save Nitive/62da4c6ed208c86f345b to your computer and use it in GitHub Desktop.
// font-face mixin
font-url(file)
return 'fonts/' + file
webfont(family, file, weight = normal)
@font-face
font-family family
file += '/' + file
src url(font-url(file + '.eot')),
url(font-url(file + '.woff')) format('woff'),
url(font-url(file + '.ttf')) format('truetype')
font-weight weight
font-style normal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment