Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created October 5, 2012 04:31
Show Gist options
  • Save snowman-repos/3838104 to your computer and use it in GitHub Desktop.
Save snowman-repos/3838104 to your computer and use it in GitHub Desktop.
SASS: Font Stack
@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