Created
October 5, 2012 04:31
-
-
Save snowman-repos/3838104 to your computer and use it in GitHub Desktop.
SASS: Font Stack
This file contains 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
@mixin font-stack-brand { | |
font-family: 'Gotham Rounded A', 'Gotham Rounded B', "proxima-nova-soft", sans-serif; | |
} | |
@mixin font-stack-headers { | |
font-family: 'Whitney Cond A', 'Whitney Cond B', "ronnia-condensed", sans-serif; | |
font-weight: 700; | |
font-style: normal; | |
} | |
@mixin font-stack-body { | |
font-family: 'Whitney SSm A', 'Whitney SSm B', "ff-meta-web-pro", sans-serif; | |
} | |
@mixin font-stack-code { | |
font-family: Menlo, "inconsolata", Monaco, "Courier New", Courier, monospace; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment