From d09f90678778547c852db06e2a20246a2cba9427 Mon Sep 17 00:00:00 2001 From: Darin Dimitroff Date: Tue, 3 Jan 2017 17:00:16 +0200 Subject: Makes use of font-weight variable --- src/css/imports/_font-weight.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/css/imports/_font-weight.css') 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; } -- cgit v1.3