Skip to content

Instantly share code, notes, and snippets.

@wolves
Created May 7, 2013 15:03
Show Gist options
  • Save wolves/5533309 to your computer and use it in GitHub Desktop.
Save wolves/5533309 to your computer and use it in GitHub Desktop.
An embed loop for embedding all of the @font-face font that you want
@each $font-face in font-1, font-2 {
@font-face {
font-family: $font-face; font-style: normal; font-weight: normal;
src: url('#{$font-face}.eot');
src: url('#{$font-face}.eot?') format('eot'),
url('#{$font-face}.woff') format('woff'),
url('#{$font-face}.ttf') format('truetype');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment