Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Created January 27, 2015 18:04
Show Gist options
  • Save DWboutin/40d53e5cfcf18ba1dbb3 to your computer and use it in GitHub Desktop.
Save DWboutin/40d53e5cfcf18ba1dbb3 to your computer and use it in GitHub Desktop.
SASS @font-face mixin
@mixin font-face($family, $filename, $weight, $style)
@font-face
font-family: $family
src: url('../fonts/#{$filename}.eot')
src: url('../fonts/#{$filename}.eot?#iefix') format("embedded-opentype"), url('../fonts/#{$filename}.woff') format("woff"), url('../fonts/#{$filename}.ttf') format("truetype"), url('../fonts/#{$filename}.svg##{$filename}') format("svg")
font-style: $style
font-weight: $weight
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment