Created
October 3, 2014 20:40
-
-
Save alxjrvs/b53fb35949e03373d30d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class='btn-primary-large'> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
name: proxima-nova; | |
src: medium; | |
} | |
@font-face { | |
name: proxima-nova; | |
src: light; | |
} | |
@font-face { | |
name: proxima-nova; | |
src: dark; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class='btn-primary-large'> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment