Skip to content

Instantly share code, notes, and snippets.

@mikedijkstra
Created January 16, 2017 20:33
Show Gist options
  • Save mikedijkstra/8b368965d39c71ccadcba94acc4b2444 to your computer and use it in GitHub Desktop.
Save mikedijkstra/8b368965d39c71ccadcba94acc4b2444 to your computer and use it in GitHub Desktop.
Type Styles
@mixin t-base {
font-family: 'HelveticaNeue', Helvetica, Helmut, Arial, "Lucida Grande", sans-serif;
font-style: normal;
font-weight: normal;
}
@mixin t-italic {
font-family: 'HelveticaNeue-Italic', 'Helvetica-Oblique';
font-style: normal;
font-weight: normal;
}
@mixin t-bold {
font-family: 'HelveticaNeue-Bold', 'Helvetica-Bold';
font-style: normal;
font-weight: normal;
}
@mixin t-bold-italic {
font-family: 'HelveticaNeue-BoldItalic', 'Helvetica-BoldOblique';
font-style: normal;
font-weight: normal;
}
@mixin t-title {
@include t-bold;
}
@mixin t-label {
font-family: "Menlo", "PTMono-Regular", Helvetica, Helmut, Arial, "Lucida Grande", sans-serif;
font-style: normal;
font-weight: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment