Add font-weight classes 1-900 for finer tuned font-weights.

This commit is contained in:
mrmrs 2016-02-01 17:18:12 -08:00
parent 1aee700cb2
commit 9ac0dd4f88
3 changed files with 20 additions and 1 deletions

View file

@ -527,6 +527,15 @@ code, .code { font-family: Consolas, monaco, monospace; }
.bold { font-weight: 600; }
.heavy { font-weight: 700; }
.ultrabold { font-weight: 900; }
.fw1 { font-weight: 100; }
.fw2 { font-weight: 200; }
.fw3 { font-weight: 300; }
.fw4 { font-weight: 400; }
.fw5 { font-weight: 500; }
.fw6 { font-weight: 600; }
.fw7 { font-weight: 700; }
.fw8 { font-weight: 800; }
.fw9 { font-weight: 900; }
/*
FORMS

File diff suppressed because one or more lines are too long

View file

@ -17,6 +17,16 @@
.heavy { font-weight: 700; }
.ultrabold{ font-weight: 900; }
.fw1 { font-weight: 100; }
.fw2 { font-weight: 200; }
.fw3 { font-weight: 300; }
.fw4 { font-weight: 400; }
.fw5 { font-weight: 500; }
.fw6 { font-weight: 600; }
.fw7 { font-weight: 700; }
.fw8 { font-weight: 800; }
.fw9 { font-weight: 900; }
@media (--breakpoint-not-small) {
.normal-ns { font-weight: normal; }
.b-ns { font-weight: bold; }