From 18b105c58e7a2066c88cc76e3c369a5608cf2117 Mon Sep 17 00:00:00 2001 From: Rares Matei Date: Sun, 19 Feb 2017 09:35:29 +0000 Subject: [PATCH] Remove Monospace font from challenge work area Reword the challenge Fix typo in Notes section --- challenges/01-responsive-web-design/basic-css.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenges/01-responsive-web-design/basic-css.json b/challenges/01-responsive-web-design/basic-css.json index 82e14a853c..6876eaf14f 100644 --- a/challenges/01-responsive-web-design/basic-css.json +++ b/challenges/01-responsive-web-design/basic-css.json @@ -812,8 +812,8 @@ "For example, if you wanted an element to use the Helvetica font, but also degrade to the Sans-Serif font when Helvetica wasn't available, you could use this CSS style:", "
p {
  font-family: Helvetica, Sans-Serif;
}
", "
", - "Now comment out your call to Google Fonts, so that the Lobster font isn't available. Notice how it degrades to the Monospace font.", - "Note
If you have the Lobster font installed on your computer, you wont see the degradation because your browser is able to find the font." + "Now comment out your call to Google Fonts, so that the Lobster font isn't available. You'll also have to make sure the heading font gets degraded to Monospace. Some CSS changes will be necessary for this.", + "Note
If you have the Lobster font installed on your computer, you won't see the degradation because your browser is able to find the font." ], "challengeSeed": [ "", @@ -823,7 +823,7 @@ " }", "", " h2 {", - " font-family: Lobster, Monospace;", + " font-family: Lobster;", " }", "", " p {",