From 614103cf871227a668882225db2679f2eddfaba6 Mon Sep 17 00:00:00 2001 From: Bharath C Hegde Date: Sat, 3 Jun 2023 11:48:19 +0530 Subject: [PATCH] I Have Updated the Font based on the desired outcome image and this Fixes #259 opened issue --- foundations/03-grouping-selectors/README.md | 2 +- foundations/03-grouping-selectors/solution/solution.css | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/foundations/03-grouping-selectors/README.md b/foundations/03-grouping-selectors/README.md index 8b5d206..2ac579a 100644 --- a/foundations/03-grouping-selectors/README.md +++ b/foundations/03-grouping-selectors/README.md @@ -8,7 +8,7 @@ This will help you further practice adding classes and using class selectors, so * **The first element**: a black background and white text * **The second element**: a yellow background -* **Both elements**: a font size of 28px and a list of fonts containing `Helvetica` and `Times New Roman`, with `sans-serif` as a fallback +* **Both elements**: a font size of 28px and a list of fonts containing `Ascender Serif`, with `sans-serif` as a fallback ## Desired Outcome ![desired outcome](./desired-outcome.png) diff --git a/foundations/03-grouping-selectors/solution/solution.css b/foundations/03-grouping-selectors/solution/solution.css index 16e6760..d3cc977 100644 --- a/foundations/03-grouping-selectors/solution/solution.css +++ b/foundations/03-grouping-selectors/solution/solution.css @@ -1,6 +1,9 @@ + +@import url(https://db.onlinewebfonts.com/c/ab7131d92890e9815ec8b4caec426740?family=Ascender+Serif); + .inverted, .fancy { - font-family: Helvetica, "Times New Roman", sans-serif; + font-family: "Ascender Serif", sans-serif; font-size: 28px; }