Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 19dc890

Browse files
author
thatblindgeye
committedAug 30, 2021
Merge remote into local
2 parents 1401f2e + d7b2b79 commit 19dc890

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed
 

‎foundations/01-css-methods/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ The properties you need to add to each element are:
1010
* `button`: an orange background and a font size of 18px
1111

1212
## Desired Outcome
13-
<!-- Insert Outcome Image -->
13+
![outcome](https://user-images.githubusercontent.com/70952936/131268832-f3a3bbde-c9e6-4e73-9b99-79ffa3d2144a.png)
14+
1415

1516
### Self Check
1617
- Did you use all three methods of adding CSS to an HTML file?
1718
- Did you properly link the external CSS file in the HTML file?
1819
- Does the `div` element have CSS added via the external method?
1920
- Does the `p` element have CSS added via the internal method?
20-
- Does the `button` element have CSS added via the inline method?
21+
- Does the `button` element have CSS added via the inline method?

‎foundations/02-class-id-selectors/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ It isn't entirely important what class or ID values you use, as the focus here i
1313
Quick tip: in VS Code, you can change which format colors are displayed in (RGB, HEX, or HSL) by hovering over the color value in the CSS and clicking the top of the popup that appears!
1414

1515
## Desired Outcome
16-
<!-- Insert Outcome Image -->
16+
![outcome](https://user-images.githubusercontent.com/70952936/131268858-5360bb32-27ba-4ce0-be59-5fda97f5eb12.png)
17+
1718

1819
### Self Check
1920
- Do the odd numbered `div` elements share a class?
2021
- Do the even numbered `div` elements have unique ID's?
21-
- Does the 3rd `div` element have multiple classes?
22+
- Does the 3rd `div` element have multiple classes?

‎foundations/03-grouping-selectors/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ This will help you further practice adding classes and using class selectors, so
1111
* **Both elements**: a font size of 28px and a list of fonts containing `Helvetica` and `Times New Roman`, with `sans-serif` as a fallback
1212

1313
## Desired Outcome
14-
<!-- Insert Outcome Image -->
14+
![outcome](https://user-images.githubusercontent.com/70952936/131268881-369972f3-b6b6-4242-965f-512c1335cc3a.png)
15+
1516

1617
### Self Check
1718
- Does each element have a unique class name?
1819
- Did you use the grouping selector for styles that both elements share?
19-
- Did you make separate rules for the styles unique to each element?
20+
- Did you make separate rules for the styles unique to each element?

‎foundations/04-chaining-selectors/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ The properties you need to add to each element are:
1212
* Make the element with both the `avatar` and `distorted` classes 200 pixels wide, then make its height twice as big as its width (here you should hardcode in a pixel value)
1313

1414
## Desired Outcome
15-
<!-- Insert Outcome Image -->
15+
![outcome](https://user-images.githubusercontent.com/70952936/131268893-f2e0b302-ea2e-44b8-ba30-b555a35023c9.jpg)
16+
1617

1718
### Self Check
1819
- Did you properly chain class selectors for each rule?
1920
- Does the `proportioned` image retain its original square proportions?
20-
- Does the `distorted` image end up looking squished and, well, distorted?
21+
- Does the `distorted` image end up looking squished and, well, distorted?

‎foundations/05-descendant-combinator/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ The properties you need to add are:
1010
* Only the `p` elements that are descendants of the `div` element should have a yellow background, red text, a font size of 20px, and center aligned
1111

1212
## Desired Outcome
13-
<!-- Insert Outcome Image -->
13+
![outcome](https://user-images.githubusercontent.com/70952936/131268923-75916744-d57f-4609-92f0-4f7ce031726a.png)
14+
1415

1516
### Self Check
1617
- Do the elements that contain the text "This should be styled" have the correct styles applied?
17-
- Do the elements that contain the text "This should be unstyled" have no styles applied?
18+
- Do the elements that contain the text "This should be unstyled" have no styles applied?

‎foundations/06-cascade-fix/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ There are multiple ways to solve this exercise, and we did our best to include a
88
Issues with the cascade can be the bane for many when it comes to CSS, and while you won't be an expert from this exercise alone and there are other ways to deal with these issues, it is still super helpful to see how these issues affect our final styles and why its important to order rules carefully.
99

1010
## Desired Outcome
11-
<!-- Insert Outcome Image -->
11+
![outcome](https://user-images.githubusercontent.com/70952936/131411210-47ff21dd-6d0c-4a7f-b6b1-1ec40f93dd8c.jpg)
1212

1313
### Self Check
1414
- Did you make sure to not edit the HTML file?
15-
- If you added selectors to the CSS, do they target a valid HTML element?
15+
- If you added selectors to the CSS, do they target a valid HTML element?

0 commit comments

Comments
 (0)
Failed to load comments.