Skip to content

Commit 43cabaf

Browse files
fix: improvements from recordings 17.02.2025
1 parent 2f7b275 commit 43cabaf

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2355,25 +2355,25 @@ Selectors target HTML elements to apply styling. They can target elements based
23552355
```css
23562356
/* Element Selector */
23572357
p {
2358-
color: blue;
2358+
color: blue;
23592359
}
23602360

23612361
/* Class Selector */
23622362
.title {
2363-
font-size: 24px;
2363+
font-size: 24px;
23642364
}
23652365

23662366
/* ID Selector */
23672367
#header {
2368-
background-color: gray;
2368+
background-color: gray;
23692369
}
23702370
```
23712371

23722372
[![Edit 054-Selectors](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/054-selectors-sl9z4d)
23732373

23742374
[^54]CodeSandbox: Selectors.
23752375

2376-
[^54]:[CodeSandbox: Selectors](https://sl9z4d.csb.app/), last access: June 5, 2024.
2376+
[^54]:[CodeSandbox: Selectors](https://sl9z4d.csb.app/), last access: February 17, 2025.
23772377

23782378
- The `p` selector targets all `<p>` elements, setting their text color to blue.
23792379
- The `.title` selector targets elements with the class "title," applying a font size of 24 pixels.
@@ -2386,27 +2386,27 @@ CSS properties define the visual characteristics of HTML elements, while values
23862386
```css
23872387
/* Font Properties */
23882388
p {
2389-
font-family: Arial, sans-serif;
2390-
font-size: 16px;
2391-
font-weight: bold;
2389+
font-family: Arial, sans-serif;
2390+
font-size: 16px;
2391+
font-weight: bold;
23922392
}
23932393

23942394
/* Color Properties */
23952395
.title {
2396-
color: #ff0000; /* Red */
2396+
color: #ff0000; /* Red */
23972397
}
23982398

23992399
/* Background Properties */
24002400
#header {
2401-
background-color: #f0f0f0; /* Light Gray */
2401+
background-color: #f0f0f0; /* Light Gray */
24022402
}
24032403
```
24042404

24052405
[![Edit 055-Properties and Values](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/055-properties-and-values-f4437y)
24062406

24072407
[^55]CodeSandbox: Properties and Values.
24082408

2409-
[^55]:[CodeSandbox: Properties and Values](https://f4437y.csb.app/), last access: June 5, 2024.
2409+
[^55]:[CodeSandbox: Properties and Values](https://f4437y.csb.app/), last access: February 17, 2025.
24102410

24112411
- Font properties control the appearance of text, such as font family, size, and weight.
24122412
- Color properties define the color of text and backgrounds using hexadecimal, RGB, or named colors.
@@ -2423,19 +2423,19 @@ The CSS box model describes how elements are rendered on a web page, consisting
24232423
```css
24242424
/* Box Model Properties */
24252425
.box {
2426-
width: 200px;
2427-
height: 100px;
2428-
padding: 20px;
2429-
border: 2px solid #000;
2430-
margin: 10px;
2426+
width: 200px;
2427+
height: 100px;
2428+
padding: 20px;
2429+
border: 2px solid #000;
2430+
margin: 10px;
24312431
}
24322432
```
24332433

24342434
[![Edit 056-Box Model](images/codesandbox.svg)](https://codesandbox.io/p/sandbox/056-box-model-pjx5ch)
24352435

24362436
[^56]CodeSandbox: Box Model.
24372437

2438-
[^56]:[CodeSandbox: Box Model](https://pjx5ch.csb.app/), last access: June 5, 2024.
2438+
[^56]:[CodeSandbox: Box Model](https://pjx5ch.csb.app/), last access: February 17, 2025.
24392439

24402440
- `width` and `height` set the dimensions of the content area.
24412441
- `padding` creates space between the content and the border.

__presentation-slides/index.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,17 +1315,17 @@ <h3>Biodegradable Bamboo Toothbrush</h3>
13151315
```css[|1|6|11|1,6,11|2|4|2,4|3|7|9|7,9|8|12|14|12,14|13]
13161316
/* Element Selector */
13171317
p {
1318-
color: blue;
1318+
color: blue;
13191319
}
13201320

13211321
/* Class Selector */
13221322
.title {
1323-
font-size: 24px;
1323+
font-size: 24px;
13241324
}
13251325

13261326
/* ID Selector */
13271327
#header {
1328-
background-color: gray;
1328+
background-color: gray;
13291329
}
13301330
```
13311331

@@ -1340,19 +1340,19 @@ <h3>Biodegradable Bamboo Toothbrush</h3>
13401340
```css[|1|8|13|1,8,13|2|6|2,6|3,4,5|9|11|9,11|10|14|16|14,16|15]
13411341
/* Font Properties */
13421342
p {
1343-
font-family: Arial, sans-serif;
1344-
font-size: 16px;
1345-
font-weight: bold;
1343+
font-family: Arial, sans-serif;
1344+
font-size: 16px;
1345+
font-weight: bold;
13461346
}
13471347

13481348
/* Color Properties */
13491349
.title {
1350-
color: #ff0000; /* Red */
1350+
color: #ff0000; /* Red */
13511351
}
13521352

13531353
/* Background Properties */
13541354
#header {
1355-
background-color: #f0f0f0; /* Light Gray */
1355+
background-color: #f0f0f0; /* Light Gray */
13561356
}
13571357
```
13581358

@@ -1375,11 +1375,11 @@ <h3>Biodegradable Bamboo Toothbrush</h3>
13751375
```css[|1|2|8|2,8|3|4|5|6|7]
13761376
/* Box Model Properties */
13771377
.box {
1378-
width: 200px;
1379-
height: 100px;
1380-
padding: 20px;
1381-
border: 2px solid #000;
1382-
margin: 10px;
1378+
width: 200px;
1379+
height: 100px;
1380+
padding: 20px;
1381+
border: 2px solid #000;
1382+
margin: 10px;
13831383
}
13841384
```
13851385

0 commit comments

Comments
 (0)