Created
October 6, 2014 18:36
-
-
Save alxjrvs/c10882e241242477de61 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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
$fonts : ( | |
proxima-nova: 'proxima-light.ttf' 'proxima-med.ttf' 'proxima-dark.ttf', | |
times-new-roman: 'times-new-roman-italic.ttf' 'times-new-roman-bold.ttf', | |
comic-sans: 'comic-sans-bold.ttf' | |
); | |
@each $fontName, $fontSizes in $fonts { | |
@each $weight in $fontSizes { | |
@font-face { | |
name: $fontName; | |
src: "public/fonts/#{$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: "public/fonts/proxima-light.ttf"; | |
} | |
@font-face { | |
name: proxima-nova; | |
src: "public/fonts/proxima-med.ttf"; | |
} | |
@font-face { | |
name: proxima-nova; | |
src: "public/fonts/proxima-dark.ttf"; | |
} | |
@font-face { | |
name: times-new-roman; | |
src: "public/fonts/times-new-roman-italic.ttf"; | |
} | |
@font-face { | |
name: times-new-roman; | |
src: "public/fonts/times-new-roman-bold.ttf"; | |
} | |
@font-face { | |
name: comic-sans; | |
src: "public/fonts/comic-sans-bold.ttf"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment