From 4906a6726b6a234f13af0dcf59869beb69b979c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniela=20K=C3=BCster?= <35259869+DanielaKuester@users.noreply.github.com> Date: Mon, 15 Oct 2018 18:15:56 +0200 Subject: [PATCH] Fix: Adjust colour description to images (#19309) * Fix: Adjust colour description to images The text says that the gradient goes from red to yellow, but in all pictures, the gradients go from red to green. I substituted "yellow" by "green" in the text. I also added a new resource for learning more. * Improved "More Information" section --- .../guide/english/css/css3-gradients/index.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/client/src/pages/guide/english/css/css3-gradients/index.md b/client/src/pages/guide/english/css/css3-gradients/index.md index 118328b166..60aeee3a85 100644 --- a/client/src/pages/guide/english/css/css3-gradients/index.md +++ b/client/src/pages/guide/english/css/css3-gradients/index.md @@ -20,7 +20,7 @@ To create a linear gradient you must define at least two color stops. Color stop background: linear-gradient(direction, color-stop1, color-stop2, ...); ##### Linear Gradient - Top to Bottom (this is default) -The following example shows a linear gradient that starts at the top. It starts red, transitioning to yellow: +The following example shows a linear gradient that starts at the top. It starts red, transitioning to green:  #### Example @@ -42,7 +42,7 @@ The following example shows a linear gradient that starts at the top. It starts
This linear gradient starts at the top. It starts red, transitioning to yellow:
+This linear gradient starts at the top. It starts red, transitioning to green:
@@ -55,7 +55,7 @@ The following example shows a linear gradient that starts at the top. It starts  ##### Linear Gradient - Left to Right -The following example shows a linear gradient that starts from the left. It starts red, transitioning to yellow: +The following example shows a linear gradient that starts from the left. It starts red, transitioning to green:  #### Example @@ -78,7 +78,7 @@ The following example shows a linear gradient that starts from the left. It starThis linear gradient starts at the left. It starts red, transitioning to yellow:
+This linear gradient starts at the left. It starts red, transitioning to green:
@@ -94,7 +94,7 @@ The following example shows a linear gradient that starts from the left. It star You can make a gradient diagonally by specifying both the horizontal and vertical starting positions. -The following example shows a linear gradient that starts at top left (and goes to bottom right). It starts red, transitioning to yellow: +The following example shows a linear gradient that starts at top left (and goes to bottom right). It starts red, transitioning to green:  @@ -118,7 +118,7 @@ The following example shows a linear gradient that starts at top left (and goesThis linear gradient starts at top left. It starts red, transitioning to yellow:
+This linear gradient starts at top left. It starts red, transitioning to green:
@@ -132,4 +132,6 @@ The following example shows a linear gradient that starts at top left (and goes #### More Information: -[MDN Documentatiion](https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient) || [w3schools](https://www.w3schools.com/css/css3_gradients.asp) \ No newline at end of file +- [MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient) +- [W3Schools](https://www.w3schools.com/css/css3_gradients.asp) +- [CSS Tricks](https://css-tricks.com/snippets/css/css-linear-gradient/)