Skip to content

Commit c98bcaa

Browse files
fix: improvements from recordings 23-24.3.2025
1 parent ff16c79 commit c98bcaa

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3534,7 +3534,7 @@ CSS Grid Layout provides a powerful way to create responsive grid-based layouts.
35343534

35353535
[^89]CodeSandbox: Key Concepts of CSS Grid.
35363536

3537-
[^89]:[CodeSandbox: Key Concepts of CSS Grid](https://fnt88c.csb.app/), last access: September 4, 2024.
3537+
[^89]:[CodeSandbox: Key Concepts of CSS Grid](https://fnt88c.csb.app/), last access: March 23, 2025.
35383538

35393539
- The `.container` class creates a grid container with `display: grid;`.
35403540
- `grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));` defines responsive grid columns with a minimum width of 200px and a maximum width of 1fr (fraction of available space).
@@ -3546,21 +3546,21 @@ Media queries are essential for creating responsive designs that adapt to differ
35463546

35473547
```css
35483548
@media screen and (max-width: 768px) {
3549-
.container {
3550-
flex-direction: column;
3551-
}
3552-
.item {
3553-
background-color: #f1f1f1;
3554-
width: 100%;
3555-
}
3549+
.container {
3550+
flex-direction: column;
3551+
}
3552+
.item {
3553+
background-color: #f1f1f1;
3554+
width: 100%;
3555+
}
35563556
}
35573557
```
35583558

35593559
[![Edit 090-Media Queries for Responsive Design](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/090-media-queries-for-responsive-design-5pr5ll)
35603560

35613561
[^90]CodeSandbox: Media Queries for Responsive Design.
35623562

3563-
[^90]:[CodeSandbox: Media Queries for Responsive Design](https://5pr5ll.csb.app/), last access: September 4, 2024.
3563+
[^90]:[CodeSandbox: Media Queries for Responsive Design](https://5pr5ll.csb.app/), last access: March 24, 2025.
35643564

35653565
- The media query targets screens with a maximum width of 768px.
35663566
- Within the media query, the layout changes to a single column with `flex-direction: column;`.
@@ -3597,7 +3597,7 @@ Web accessibility is crucial for ensuring that websites and web applications are
35973597

35983598
[^91]CodeSandbox: Importance and Principles of Web Accessibility.
35993599

3600-
[^91]:[CodeSandbox: Importance and Principles of Web Accessibility](https://qtxl9q.csb.app/), last access: September 6, 2024.
3600+
[^91]:[CodeSandbox: Importance and Principles of Web Accessibility](https://qtxl9q.csb.app/), last access: March 24, 2025.
36013601

36023602
- In this code snippet, semantic HTML elements like `<nav>`, `<ul>`, and `<li>` are used to create a navigational menu.
36033603
- By using semantic elements, screen readers can interpret the structure of the navigation and convey it to users with disabilities more effectively.

__presentation-slides/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2378,17 +2378,17 @@ <h1>Main Heading</h1>
23782378

23792379
---
23802380

2381-
### Key Concepts of CSS Grid <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
2381+
### Media Queries for Responsive Design <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
23822382

23832383
```css[|1|9|1,9|2|4|2,4|3|5|8|5,8]
23842384
@media screen and (max-width: 768px) {
2385-
.container {
2386-
flex-direction: column;
2387-
}
2388-
.item {
2389-
background-color: #f1f1f1;
2390-
width: 100%;
2391-
}
2385+
.container {
2386+
flex-direction: column;
2387+
}
2388+
.item {
2389+
background-color: #f1f1f1;
2390+
width: 100%;
2391+
}
23922392
}
23932393
```
23942394

0 commit comments

Comments
 (0)