diff --git a/01/style.css b/01/style.css index faa3160d..4ba5e257 100644 --- a/01/style.css +++ b/01/style.css @@ -19,5 +19,6 @@ height: 0; border: 150px solid #dcdcdc; border-right-color: transparent; - border-bottom-color: transparent; + border-bottom-color: transparent; + shape-outside: polygon(0 0, 300px 0, 0 300px); } \ No newline at end of file diff --git a/02/styles/global.css b/02/styles/global.css index a1c785e8..99023f50 100644 --- a/02/styles/global.css +++ b/02/styles/global.css @@ -4,13 +4,18 @@ box-sizing: border-box; } +body { + display: grid; +} + .a, .b, .c { border: 3px solid transparent; min-height: 50px; - + height: 50vh; display: flex; justify-content: center; align-items: center; + width: 100%; } .a { @@ -19,8 +24,36 @@ .b { border-color: #ffdfba; + grid-row: 2 / 3; } .c { border-color: #baffc9; +} + +@media (min-width: 601px) { + + body { + grid-template-areas: + "a a" + "c b"; + justify-items: center; + } + + .a { + grid-area: a; + } + + .b { + grid-area: b; + } + + .c { + grid-area: c; + } + + .a, .b, .c { + max-width: 1200px; + + } } \ No newline at end of file diff --git a/03/assets/pumpkins-8338100_1920--smaller.jpg b/03/assets/pumpkins-8338100_1920--smaller.jpg new file mode 100644 index 00000000..fb72704f Binary files /dev/null and b/03/assets/pumpkins-8338100_1920--smaller.jpg differ diff --git a/03/assets/pumpkins-8338100_1920.jpg b/03/assets/pumpkins-8338100_1920.jpg new file mode 100644 index 00000000..ec2b53ce Binary files /dev/null and b/03/assets/pumpkins-8338100_1920.jpg differ diff --git a/03/index.html b/03/index.html index 4a2e35c2..6fcfc027 100644 --- a/03/index.html +++ b/03/index.html @@ -5,12 +5,22 @@
+