From 614271db181b9219c542464d3ec92ee4713ba984 Mon Sep 17 00:00:00 2001 From: Atomk Date: Sun, 19 Feb 2017 20:05:40 +0100 Subject: [PATCH] Remove unnecessary hover references --- .../01-responsive-web-design/applied-visual-design.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/challenges/01-responsive-web-design/applied-visual-design.json b/challenges/01-responsive-web-design/applied-visual-design.json index cfeac30d2f..a57e81d5b2 100644 --- a/challenges/01-responsive-web-design/applied-visual-design.json +++ b/challenges/01-responsive-web-design/applied-visual-design.json @@ -683,7 +683,7 @@ "id": "587d781b367417b2b2512abe", "title": "Add a Box-shadow to a Card-like Element", "description": [ - "The box-shadow property applies one or more shadows to an element. This technique can be used on any state of an element, but here you'll apply it on hover.", + "The box-shadow property applies one or more shadows to an element.", "The box-shadow property takes values for offset-x (how far to push the shadow horizontally from the element), offset-y (how far to push the shadow vertically from the element), blur-radius, spread-radius and a color value, in that order. The blur-radius and spread-radius values are optional.", "Here's an example of the CSS to create multiple shadows with some blur, at mostly-transparent black colors:", "
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
", @@ -772,7 +772,7 @@ " color: black;", " ", " }", - " #thumbnail:hover {", + " #thumbnail {", " box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);", " }", " .fullCard {", @@ -839,7 +839,7 @@ " color: black;", " opacity: 0.7;", " }", - " #thumbnail:hover {", + " #thumbnail {", " box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);", " }", " .fullCard {", @@ -920,7 +920,7 @@ " color: black;", " opacity: 0.7;", " }", - " #thumbnail:hover {", + " #thumbnail {", " box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);", " }", " .fullCard {",