diff options
| author | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-03 17:00:16 +0200 |
|---|---|---|
| committer | Darin Dimitroff <d@thecrazyones.agency> | 2017-01-03 17:00:16 +0200 |
| commit | d09f90678778547c852db06e2a20246a2cba9427 (patch) | |
| tree | 000801c5752ff6ab8ed0baa4b3245390a28339a5 /src/css/imports/_font-weight.css | |
| parent | 0adab1841a0faa0e7830914d7bea4ce2f2105d76 (diff) | |
Makes use of font-weight variable
Diffstat (limited to 'src/css/imports/_font-weight.css')
| -rwxr-xr-x | src/css/imports/_font-weight.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/css/imports/_font-weight.css b/src/css/imports/_font-weight.css index fabba82..1fa9182 100755 --- a/src/css/imports/_font-weight.css +++ b/src/css/imports/_font-weight.css @@ -1,5 +1,5 @@ .normal { font-weight: normal; } -.b { font-weight: bold; } +.b { font-weight: var(--bold-font-weight); } .fw1 { font-weight: 100; } .fw2 { font-weight: 200; } .fw3 { font-weight: 300; } @@ -13,7 +13,7 @@ @media (--breakpoint-not-small) { .normal-ns { font-weight: normal; } - .b-ns { font-weight: bold; } + .b-ns { font-weight: var(--bold-font-weight); } .fw1-ns { font-weight: 100; } .fw2-ns { font-weight: 200; } .fw3-ns { font-weight: 300; } @@ -27,7 +27,7 @@ @media (--breakpoint-medium) { .normal-m { font-weight: normal; } - .b-m { font-weight: bold; } + .b-m { font-weight: var(--bold-font-weight); } .fw1-m { font-weight: 100; } .fw2-m { font-weight: 200; } .fw3-m { font-weight: 300; } @@ -41,7 +41,7 @@ @media (--breakpoint-large) { .normal-l { font-weight: normal; } - .b-l { font-weight: bold; } + .b-l { font-weight: var(--bold-font-weight); } .fw1-l { font-weight: 100; } .fw2-l { font-weight: 200; } .fw3-l { font-weight: 300; } |
