Created
May 24, 2016 14:29
-
-
Save yacine/0cebd8a4a4d9372ffd80dc16ab01af48 to your computer and use it in GitHub Desktop.
Less - Font weight short cuts
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
// font weight | |
.font-thin { font-weight: 100; } | |
.font-light { font-weight: 300; } | |
.font-regular { font-weight: 400; } | |
.font-medium { font-weight: 500; } | |
.font-bold { font-weight: 700; } | |
.font-black { font-weight: 900; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment