Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
fix: penguin colors to match directions
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-c-wong authored and scissorsneedfoodtoo committed Jul 1, 2018
1 parent 66d8463 commit 0f4b8a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions challenges/01-responsive-web-design/basic-css.json
Original file line number Diff line number Diff line change
Expand Up @@ -5325,9 +5325,9 @@
"contents": [
"<style>",
" .penguin {",
" --penguin-skin: gray;",
" --penguin-belly: white;",
" --penguin-beak: orange;",
" --penguin-skin: black;",
" --penguin-belly: gray;",
" --penguin-beak: yellow;",
" position: relative;",
" margin: auto;",
" display: block;",
Expand Down
4 changes: 2 additions & 2 deletions challenges/01-responsive-web-design/css-flexbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@
"CSS flexbox has a feature to split a flex item into multiple rows (or columns). By default, a flex container will fit all flex items together. For example, a row will all be on one line.",
"However, using the <code>flex-wrap</code> property, it tells CSS to wrap items. This means extra items move into a new row or column. The break point of where the wrapping happens depends on the size of the items and the size of the container.",
"CSS also has options for the direction of the wrap:",
"<ul><li><code>nowrap</code>: this is the default setting, and does not wrap items.</li><li><code>wrap</code>: wraps items from left-to-right if they are in a row, or top-to-bottom if they are in a column.</li><li><code>wrap-reverse</code>: wraps items from right-to-left if they are in a row, or bottom-to-top if they are in a column.</li></ul>",
"<ul><li><code>nowrap</code>: this is the default setting, and does not wrap items.</li><li><code>wrap</code>: wraps items from left-to-right if they are in a row, or top-to-bottom if they are in a column.</li><li><code>wrap-reverse</code>: wraps items from bottom-to-top if they are in a row, or left-to-right if they are in a column.</li></ul>",
"<hr>",
"The current layout has too many boxes for one row. Add the CSS property <code>flex-wrap</code> to the <code>#box-container</code> element, and give it a value of wrap."
],
Expand Down Expand Up @@ -1375,4 +1375,4 @@
}
}
]
}
}

0 comments on commit 0f4b8a9

Please sign in to comment.