fix(curriculum): typos in Beta Colored Markers section (#44631)

Co-authored-by: “Jim” <“jimkernicky@gmail.com”>
This commit is contained in:
Jim Kernicky
2022-01-01 21:27:47 -05:00
committed by GitHub
parent 2a3e344d13
commit a9852c7180
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ dashedName: step-22
# --description--
A function is a piece of code that can take an input and perform a specific action. The CSS `rgb` function accepts a values, or <dfn>arguments</dfn>, for red, green, and blue, and produces a color:
A function is a piece of code that can take an input and perform a specific action. The CSS `rgb` function accepts values, or <dfn>arguments</dfn>, for red, green, and blue, and produces a color:
```css
rgb(red, green, blue);

View File

@ -7,7 +7,7 @@ dashedName: step-80
# --description--
Borders have several styles to choose from. You can make your border a solid line, but can also go with a dashed or dotted line if you prefer. Solid border lines are probably the most common.
Borders have several styles to choose from. You can make your border a solid line, but you can also use a dashed or dotted line if you prefer. Solid border lines are probably the most common.
In the `.sleeve` CSS rule, add the `border-left-style` property with the value `solid`.

View File

@ -15,7 +15,7 @@ box-shadow: offsetX offsetY blurRadius color;
If a `blurRadius` value isn't included, it defaults to `0` and produces sharp edges. The higher the value of `blurRadius`, the greater the blurring effect is.
In the `.green` CSS rule, add the `box-shadow` property with the values `5px` for `offsetX`, `5px` for `offsetY`, `5px`, for `blurRadius`, and `green` for `color`.
In the `.green` CSS rule, add the `box-shadow` property with the values `5px` for `offsetX`, `5px` for `offsetY`, `5px` for `blurRadius`, and `green` for `color`.
# --hints--

View File

@ -17,7 +17,7 @@ Like `blurRadius`, `spreadRadius` defaults to `0` if it isn't included.
Practice by adding a 5 pixel shadow directly around the blue marker.
In the `.blue` CSS rule, add the `box-shadow` property with the values `0` for `offsetX`, `0` for `offsetY`, `0`, for `blurRadius`, `5px` for `spreadRadius`, and `blue` for `color`.
In the `.blue` CSS rule, add the `box-shadow` property with the values `0` for `offsetX`, `0` for `offsetY`, `0` for `blurRadius`, `5px` for `spreadRadius`, and `blue` for `color`.
# --hints--