Skip to content

Instantly share code, notes, and snippets.

@themorgantown
Last active December 2, 2020 04:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save themorgantown/8cb58cb8be685f8bf816424596d0b12f to your computer and use it in GitHub Desktop.
Save themorgantown/8cb58cb8be685f8bf816424596d0b12f to your computer and use it in GitHub Desktop.
Helper css for jamming font weights into classes: https://forums.tumult.com/t/selecting-font-weights-in-typekit-tutorial/18339
.fw100 {
font-weight:100 !important;
}
.fw200 {
font-weight:200 !important;
}
.fw300 {
font-weight:300 !important;
}
.fw400 {
/* note: this is 'regular' and typically doesn't need
to be applied */
font-weight:400 !important;
}
.fw500 {
font-weight:500 !important;
}
.fw600 {
font-weight:600 !important;
}
.fw700 {
/* note, this is the same as selecting 'bold'
in the typography inspector so is also not required */
font-weight: 700 !important;
}
.fw700 {
font-weight:700 !important;
}
.fw800 {
font-weight:800 !important;
}
.fw900 {
font-weight:900 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment