Created
April 7, 2015 15:28
-
-
Save micahgodbolt/1e55cbe59619c6ff4416 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.12) | |
// Compass (v1.0.3) | |
// ---- | |
$fonts: ( | |
english: "'Helvetica Light', Helvetica, 'Droid Sans', Arial, Arial Unicode MS, sans-serif" | |
); | |
$lang-locales: ( | |
english: en | |
); | |
@each $language, $locale in $lang-locales { | |
body.lang-#{$locale} { | |
font-family: unquote(map-get($fonts, $language)); | |
} | |
} |
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
body.lang-en { | |
font-family: 'Helvetica Light', Helvetica, 'Droid Sans', Arial, Arial Unicode MS, sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment