fix(learn): Broke several steps down into smaller steps for the Cafe Menu project - v7 (#39778)

* fix: made some verbiage changes to existing steps

* fix: rewrite step 45 instructions

* fix: added two steps between 45 and 46

* fix: miscellaneous edits for steps 21,22, 27

* fix: change step 35 to allow for smaller steps

* fix: update 36-41 seed code

* fix: added new step between 41 and 42

* fix: add new step between 42 and 43

* fix: broke step 33 into 4 new steps

* fix: removed unnecessary step 37

* fix: change wording of step 33 instructions

* fix: corrected ERM syntax

* fix: corrected seed code typos in steps 45 and 46

* fix: corrected typo

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

* fix: changed wording to improve readability

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: changed "Free Code Camp" to "freeCodeCamp"

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

* fix: corrected typo and improved wording

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

* fix: corrected typo

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

* fix: correct typos

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: corrected punctuation

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: corrected punctuation

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: corrected punctuation

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: added missing period

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: corrected typo

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: added the missing word "larger"

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: corrected typo

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

* fix: change paragraph to `p`

* fix: reorderd steps after step 37 deleted

* fix: added two new steps to fix missing steps problem

* fix: added missing ERMs for step 69

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
This commit is contained in:
Randell Dawson
2020-10-13 15:27:40 -07:00
committed by GitHub
parent 3e00167ba4
commit b3cbbe0f3d
77 changed files with 2251 additions and 1324 deletions

View File

@ -1,5 +1,5 @@
---
id: 5f3ef6e0e0c3feaebcf647ad
id: 5f7691dafd882520797cd2f0
title: Part 44
challengeType: 0
---
@ -7,7 +7,7 @@ challengeType: 0
## Description
<section id='description'>
Add an `h2` element in the new section add give it the text `Desserts`.
Next, position the other `p` elements to be on the same line with no space between them.
</section>
@ -49,23 +49,25 @@ tests:
<article class="item">
<p class="flavor">French Vanilla</p><p class="price">3.00</p>
</article>
--fcc-editable-region--
<article class="item">
<p class="flavor">Carmel Macchiato</p><p class="price">3.75</p>
<p>Carmel Macchiato</p>
<p>3.75</p>
</article>
<article class="item">
<p class="flavor">Pumpkin Spice</p><p class="price">3.50</p>
<p>Pumpkin Spice</p>
<p>3.50</p>
</article>
<article class="item">
<p class="flavor">Hazelnut</p><p class="price">4.00</p>
<p>Hazelnut</p>
<p>4.00</p>
</article>
<article class="item">
<p class="flavor">Mocha</p><p class="price">4.50</p>
<p>Mocha</p>
<p>4.50</p>
</article>
--fcc-editable-region--
</section>
--fcc-editable-region--
<section>
</section>
--fcc-editable-region--
</main>
</div>
</body>
@ -98,12 +100,12 @@ h1, h2, p {
.flavor {
text-align: left;
width: 75%;
width: 50%;
}
.price {
text-align: right;
width: 25%
width: 50%;
}
```