Skip to content

Commit b23e5b3

Browse files
committed
adding screenshots and resources
1 parent 39b2d18 commit b23e5b3

28 files changed

+24
-3
lines changed

01-review/instructions.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
CHAPTER 1: WARM UP EXERCISE
22

3-
To get those juices flowing for CSS layouts, look at the attached image: https://s3-us-west-2.amazonaws.com/s.cdpn.io/3273620/grid1.png
3+
To get those juices flowing for CSS layouts, look at the image in this folder or online: https://s3-us-west-2.amazonaws.com/s.cdpn.io/3273620/grid1.png
44

55
PART 1: FLEXBOX
66
Code this layout using Flexbox.
7-
Starting CodePen: https://codepen.io/jen4web/pen/dxqjKG
7+
8+
START: https://codepen.io/jen4web/pen/dxqjKG
89

910
RULES:
1011
- Do not change the HTML!!! See if you can use selectors to do exactly what you want.

05-home page/ch5-lg.png

1.14 MB
Loading

05-home page/ch5-md.png

1.13 MB
Loading

05-home page/ch5-sm.png

1.18 MB
Loading

05-home page/ch5-xl.png

1.27 MB
Loading

06-inside page/ch6-book-md.png

653 KB
Loading

06-inside page/ch6-book-sm.png

706 KB
Loading

06-inside page/ch6-book-xl-lg.png

641 KB
Loading

06-inside page/instructions.txt

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ I've given you book.html, an inside page layout for the website. It has its own
44

55
Go back to layout.css and see if you can edit this stylesheet to apply to the book.html page.
66

7+
Screenshots for the book page are included so you know how the page should look.
8+
79
HINTS:
810

911
- Where are the flex containers/parents and the flex items/children?

07-type scales/instructions.txt

+12
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,15 @@ https://blog.prototypr.io/defining-a-modular-type-scale-for-web-ui-51acd5df31aa
1717
Exploring Responsive Type Scales: Finding your (Appropriate, Multi-Device and Vertical) Rhythm
1818
https://medium.com/sketch-app-sources/exploring-responsive-type-scales-cf1da541be54
1919

20+
Responsive Designs and CSS Custom Properties: Defining Variables and Breakpoints
21+
https://css-tricks.com/responsive-designs-and-css-custom-properties-defining-variables-and-breakpoints/
22+
23+
A More Modern Scale for Web Typography
24+
http://typecast.com/blog/a-more-modern-scale-for-web-typography
25+
26+
FontPair (help pick fonts that work together)
27+
https://fontpair.co/
28+
29+
30 Great Font Combinations For Your Next Design Project
30+
https://digitalsynopsis.com/design/best-font-combinations-typeface-pairings-guide/
31+
699 KB
Loading
632 KB
Loading
649 KB
Loading
1.09 MB
Loading
1.08 MB
Loading
1.16 MB
Loading
1.22 MB
Loading
223 KB
Loading
678 KB
Loading
629 KB
Loading
231 KB
Loading

10-you try it tables/end/css/tables.css

+7-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ caption {
5050
font-weight: bold;
5151
font-size: var(--h2);
5252
padding: 0.5rem;
53+
display: block;
5354
}
5455
/* For wider dimensions, change our layout so the table can take the full width of the screen. */
5556
/* table MQ's */
@@ -76,13 +77,18 @@ caption {
7677
table{
7778
display: table;
7879
}
80+
caption {
81+
font-size: var(--font-size);
82+
}
83+
7984
}
8085

8186

8287
/* basic table styling */
88+
8389
table {
8490
border-collapse: collapse;
85-
border: 1px solid black;
91+
border: 1px solid #ccc;
8692
}
8793
tbody tr:nth-child(odd) {
8894
background-color: #f6dcd4;
117 KB
Loading
Loading

final-lg.png

1.15 MB
Loading

final-md.png

1.13 MB
Loading

final-sm.png

1.16 MB
Loading

final-xl.png

1.26 MB
Loading

0 commit comments

Comments
 (0)