Skip to content

Instantly share code, notes, and snippets.

@paul-english
Created November 4, 2011 19:21
Show Gist options
  • Save paul-english/1340239 to your computer and use it in GitHub Desktop.
Save paul-english/1340239 to your computer and use it in GitHub Desktop.
SCSS font-face mixin
@mixin font-face($font-family, $url) {
@font-face {
font-family: '#{$font-family}';
src: url('#{$url}.eot?') format('eot'), url('#{$url}.woff') format('woff'), url('#{$url}.ttf') format('truetype');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment