Skip to content

Instantly share code, notes, and snippets.

@alxjrvs
Created October 3, 2014 20:40
Show Gist options
  • Save alxjrvs/b53fb35949e03373d30d to your computer and use it in GitHub Desktop.
Save alxjrvs/b53fb35949e03373d30d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class='btn-primary-large'>
</div>
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$proxima-weights: (medium, light, dark);
$fonts : (
proxima-nova: $proxima-weights
);
@each $fontName, $fontSizes in $fonts {
@each $weight in $fontSizes {
@font-face {
name: $fontName;
src: $weight;
}
}
}
@font-face {
name: proxima-nova;
src: medium;
}
@font-face {
name: proxima-nova;
src: light;
}
@font-face {
name: proxima-nova;
src: dark;
}
<div class='btn-primary-large'>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment