Created
October 3, 2013 21:34
-
-
Save lrobeson/6817503 to your computer and use it in GitHub Desktop.
Sass partial - font face declarations for cloud.typography.com hosted fonts
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
/** | |
* @file | |
* Font face declarations for Typography.com hosted fonts | |
*/ | |
/* replace this URL, it will be specific to each project */ | |
@import "//cloud.typography.com/123456/789123/css/fonts.css"; | |
/* Gotham Bold */ | |
@font-face { | |
font-family: "Gotham A", "Gotham B"; | |
font-style: normal; | |
font-weight: 700; | |
} | |
/* Gotham Book */ | |
@font-face { | |
font-family: "Gotham A", "Gotham B"; | |
font-style: normal; | |
font-weight: 400; | |
} | |
/* Gotham Medium */ | |
@font-face { | |
font-family: "Gotham A", "Gotham B"; | |
font-style: normal; | |
font-weight: 500; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment