Skip to content

Instantly share code, notes, and snippets.

@steoo
Last active January 27, 2016 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steoo/c2a14d3967143724f026 to your computer and use it in GitHub Desktop.
Save steoo/c2a14d3967143724f026 to your computer and use it in GitHub Desktop.
$names: (
Ultra_Light: 100,
Light: 200,
Regular: 400,
Medium: 500,
Bold: 600,
ExtraBold: 700,
Black: 400
);
@mixin fontface($font, $name, $weight, $style: "normal"){
@font-face {
font-family: #{$font};
src: url("../font/Butler_#{$name}.otf") format("opentype");
font-weight: $weight;
font-style: $style;
}
}
@each $name, $weight in $names {
@include fontface("Butler", $name, $weight, normal);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment