Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions files/en-us/_redirects.txt
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@
/en-US/docs/CSS/Getting_Started /en-US/docs/Learn_web_development/Core/Styling_basics
/en-US/docs/CSS/Getting_Started/Boxes /en-US/docs/Learn_web_development/Core/Styling_basics
/en-US/docs/CSS/Getting_Started/Cascading_and_inheritance /en-US/docs/Learn_web_development/Core/Styling_basics/Handling_conflicts
/en-US/docs/CSS/Getting_Started/Challenge_solutions /en-US/docs/Learn_web_development/Core/Challenges
/en-US/docs/CSS/Getting_Started/Challenge_solutions /en-US/docs/Learn_web_development/Core
/en-US/docs/CSS/Getting_Started/Content /en-US/docs/Learn_web_development/Howto/Solve_CSS_problems/Generated_content
/en-US/docs/CSS/Getting_Started/How_CSS_works /en-US/docs/Learn_web_development/Core/Styling_basics/What_is_CSS
/en-US/docs/CSS/Getting_Started/JavaScript /en-US/docs/Learn_web_development/Core/Scripting/DOM_scripting
Expand Down Expand Up @@ -5768,6 +5768,7 @@
/en-US/docs/Learn_web_development/Core/CSS_layout/Position_skills /en-US/docs/Learn_web_development/Core/CSS_layout/Test_your_skills/Position
/en-US/docs/Learn_web_development/Core/CSS_layout/Test_your_skills/Multicolumn /en-US/docs/Learn_web_development/Core/CSS_layout/Multiple-column_Layout
/en-US/docs/Learn_web_development/Core/CSS_layout/rwd_skills /en-US/docs/Learn_web_development/Core/CSS_layout/Test_your_skills/Responsive_design
/en-US/docs/Learn_web_development/Core/Challenges /en-US/docs/Learn_web_development/Core
/en-US/docs/Learn_web_development/Core/Scripting/Test_your_skills:_Arrays /en-US/docs/Learn_web_development/Core/Scripting/Test_your_skills/Arrays
/en-US/docs/Learn_web_development/Core/Scripting/Test_your_skills:_Conditionals /en-US/docs/Learn_web_development/Core/Scripting/Test_your_skills/Conditionals
/en-US/docs/Learn_web_development/Core/Scripting/Test_your_skills:_Events /en-US/docs/Learn_web_development/Core/Scripting/Test_your_skills/Events
Expand Down Expand Up @@ -12871,7 +12872,7 @@
/en-US/docs/Web/Guide/CSS/Getting_started /en-US/docs/Learn_web_development/Core/Styling_basics
/en-US/docs/Web/Guide/CSS/Getting_started/Boxes /en-US/docs/Learn_web_development/Core/Styling_basics
/en-US/docs/Web/Guide/CSS/Getting_started/Cascading_and_inheritance /en-US/docs/Learn_web_development/Core/Styling_basics/Handling_conflicts
/en-US/docs/Web/Guide/CSS/Getting_started/Challenge_solutions /en-US/docs/Learn_web_development/Core/Challenges
/en-US/docs/Web/Guide/CSS/Getting_started/Challenge_solutions /en-US/docs/Learn_web_development/Core
/en-US/docs/Web/Guide/CSS/Getting_started/Content /en-US/docs/Learn_web_development/Howto/Solve_CSS_problems/Generated_content
/en-US/docs/Web/Guide/CSS/Getting_started/How_CSS_works /en-US/docs/Learn_web_development/Core/Styling_basics/What_is_CSS
/en-US/docs/Web/Guide/CSS/Getting_started/JavaScript /en-US/docs/Learn_web_development/Core/Scripting/DOM_scripting
Expand Down
12 changes: 0 additions & 12 deletions files/en-us/_wikihistory.json
Original file line number Diff line number Diff line change
Expand Up @@ -6181,18 +6181,6 @@
"modified": "2020-07-16T22:27:36.041Z",
"contributors": ["MelchiorIm3Tal", "chrisdavidmills", "rachelandrew"]
},
"Learn_web_development/Core/Challenges": {
"modified": "2019-08-29T20:48:33.765Z",
"contributors": [
"Sebastianz",
"strael1",
"teoli",
"Jeremie",
"Sheppy",
"illourr",
"jswisher"
]
},
"Learn_web_development/Core/Frameworks_libraries": {
"modified": "2020-09-25T22:34:22.129Z",
"contributors": ["chrisdavidmills", "CodeDotJS"]
Expand Down
315 changes: 0 additions & 315 deletions files/en-us/learn_web_development/core/challenges/index.md

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,24 @@ Notes about this demonstration:

Change the stylesheet so that the inner petals all turn pink when the mouse pointer is over any one of them, without changing the way the outer petals work.

[See a solution to this challenge.](/en-US/docs/Learn_web_development/Core/Challenges#svg_and_css)
<details>
<summary>Click here to see the solution</summary>

Move the position of the `:hover` pseudo-class from a specific petal to all petals:

```css
#inner-petals {
--segment-fill-fill-hover: pink;
}

/* Non-standard way for some older browsers */
#inner-petals:hover .segment-fill {
fill: pink;
stroke: none;
}
```

</details>

## Simplified structure

Expand Down