Skip to content

Instantly share code, notes, and snippets.

@cdl
Created September 28, 2013 19:17
Show Gist options
  • Save cdl/6745474 to your computer and use it in GitHub Desktop.
Save cdl/6745474 to your computer and use it in GitHub Desktop.
// main.scss
@import 'vars';
@import 'icing/icing';
// _vars.scss;
$main-typeface: 'proxima-nova';
$heading-typeface: 'proxima-nova-cond';
$pullquote-typeface: 'proxima-nova-cond';
// _icing.scss
$font-family-boiler: 'Helvetica Neue', 'HelveticaNeue', Helvetica, Arial, sans-serif;
// (redacted)
body {
font-family: $main-typeface, $font-family-boiler;
}
h1, h2, h3, h4 {
font-family: $heading-typeface, $font-family-boiler;
}
blockquote {
font-family: $pullquote-typeface, $font-family-boiler;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment