Created
January 16, 2017 20:33
-
-
Save mikedijkstra/8b368965d39c71ccadcba94acc4b2444 to your computer and use it in GitHub Desktop.
Type Styles
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 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