Skip to content

Commit b5863a8

Browse files
fix: improvements from recording 12.3.2025 v2
1 parent 252766d commit b5863a8

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3145,28 +3145,28 @@ Visual hierarchy plays a critical role in content prioritization, guiding users'
31453145

31463146
```css
31473147
h1 {
3148-
font-size: 24px; /* Large font size for main heading */
3148+
font-size: 24px; /* Large font size for main heading */
31493149
}
31503150

31513151
h2 {
3152-
font-size: 20px; /* Medium font size for subheadings */
3152+
font-size: 20px; /* Medium font size for subheadings */
31533153
}
31543154

31553155
p.paragraph-normal {
3156-
font-size: 16px; /* Standard font size for body text */
3156+
font-size: 16px; /* Standard font size for body text */
31573157
}
31583158

31593159
p.paragraph-bolded {
3160-
font-size: 16px; /* Standard font size for body text */
3161-
font-weight: bold; /* Bold font weight for emphasis */
3160+
font-size: 16px; /* Standard font size for body text */
3161+
font-weight: bold; /* Bold font weight for emphasis */
31623162
}
31633163
```
31643164

31653165
[![Edit 079-Visual Hierarchy](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/079-visual-hierarchy-rqvhyf)
31663166

31673167
[^79]CodeSandbox: Visual Hierarchy.
31683168

3169-
[^79]:[CodeSandbox: Visual Hierarchy](https://rqvhyf.csb.app/), last access: June 25, 2024.
3169+
[^79]:[CodeSandbox: Visual Hierarchy](https://rqvhyf.csb.app/), last access: March 12, 2025.
31703170

31713171
- In this example, different font sizes are applied to headings (`<h1>`, `<h2>`) and paragraphs (`<p>`), creating a clear visual distinction between different levels of content.
31723172
- The main heading (`<h1>`) is styled with a larger font size and bold font weight to make it stand out as the most important element on the page.

__presentation-slides/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2024,20 +2024,20 @@ <h1>Main Heading</h1>
20242024

20252025
```css[|2|1,3|6|5,7|10|9,11|14-15|13,16]
20262026
h1 {
2027-
font-size: 24px; /* Large font size for main heading */
2027+
font-size: 24px; /* Large font size for main heading */
20282028
}
20292029

20302030
h2 {
2031-
font-size: 20px; /* Medium font size for subheadings */
2031+
font-size: 20px; /* Medium font size for subheadings */
20322032
}
20332033

20342034
p.paragraph-normal {
2035-
font-size: 16px; /* Standard font size for body text */
2035+
font-size: 16px; /* Standard font size for body text */
20362036
}
20372037

20382038
p.paragraph-bolded {
2039-
font-size: 16px; /* Standard font size for body text */
2040-
font-weight: bold; /* Bold font weight for emphasis */
2039+
font-size: 16px; /* Standard font size for body text */
2040+
font-weight: bold; /* Bold font weight for emphasis */
20412041
}
20422042
```
20432043

0 commit comments

Comments
 (0)