Skip to content

Instantly share code, notes, and snippets.

@ar7n
Last active August 29, 2015 14:24
Show Gist options
  • Save ar7n/1b46b5383519d91e130b to your computer and use it in GitHub Desktop.
Save ar7n/1b46b5383519d91e130b to your computer and use it in GitHub Desktop.
Font-face less mixin
.include-custom-font(@family: arial, @file: arial, @weight: normal, @style: normal){
@font-face{
font-family: @family;
src:url('/fonts/@{file}.eot');
src:url('/fonts/@{file}.eot?#iefix') format('embedded-opentype'),
url('/fonts/@{file}.woff') format('woff'),
url('/fonts/@{file}.ttf') format('truetype'),
url('/fonts/@{file}.svg#icon') 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