From 58fe9c32eb28c9cb5cc76bae55a468cd57c96bf4 Mon Sep 17 00:00:00 2001 From: Jonathan R Martinez-Hernandez <104695867+JonathanRMartinezHernandez@users.noreply.github.com> Date: Sun, 31 Jul 2022 20:12:30 -0500 Subject: [PATCH 1/2] Added missing weight from solution.css The solution.css has a font weight of 800 on the classes .para, small-para, .small-para, and .child that were missing from the originally assigned style.css --- foundations/06-cascade-fix/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/foundations/06-cascade-fix/style.css b/foundations/06-cascade-fix/style.css index 49ab576..5b89725 100644 --- a/foundations/06-cascade-fix/style.css +++ b/foundations/06-cascade-fix/style.css @@ -5,10 +5,12 @@ body{ .para, .small-para { color: hsl(0, 0%, 0%); + font-weight: 800; } .small-para { font-size: 14px; + font-weight: 800; } .para { @@ -29,10 +31,11 @@ body{ .child { color: rgb(0, 0, 0); + font-weight: 800; font-size: 14px; } div.text { color: rgb(0, 0, 0); font-size: 22px; -} \ No newline at end of file +} From d9de639d5ad1d12a3c728638aa2597c603878060 Mon Sep 17 00:00:00 2001 From: Jonathan R Martinez-Hernandez <104695867+JonathanRMartinezHernandez@users.noreply.github.com> Date: Thu, 4 Aug 2022 14:17:55 -0500 Subject: [PATCH 2/2] Update foundations/06-cascade-fix/style.css Co-authored-by: Daniel Murphy <60681378+dm-murphy@users.noreply.github.com> --- foundations/06-cascade-fix/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/foundations/06-cascade-fix/style.css b/foundations/06-cascade-fix/style.css index 5b89725..b510429 100644 --- a/foundations/06-cascade-fix/style.css +++ b/foundations/06-cascade-fix/style.css @@ -38,4 +38,5 @@ body{ div.text { color: rgb(0, 0, 0); font-size: 22px; + font-weight: 100; }