Skip to content

Commit 3f2f759

Browse files
committed
fix: Make fonts a little smaller.
1 parent 47601c4 commit 3f2f759

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

_posts/2025-11-09-linear-regression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ df <- D.readCsv "../data/housing.csv"
5555

5656
**Simple, right?** We're loading California housing data from a CSV file. This dataset contains information about different neighborhoods—things like population, median income, and (importantly) median house values.
5757

58-
### Step 2: Handling Missing Data 🔍
58+
### Step 2: Handling Missing Data
5959

6060
Real-world data is messy. Sometimes values are missing, and we need to deal with that:
6161

css/main.css

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ body {
77
flex-direction: column;
88
}
99

10+
h1 {
11+
font-size: 3em;
12+
}
13+
14+
h2 {
15+
font-size: 2.5em;
16+
}
17+
18+
h3 {
19+
font-size: 2em;
20+
}
21+
1022
main {
1123
flex: 1 0 auto;
1224
}
@@ -15,7 +27,7 @@ pre, code, pre code {
1527
border: none;
1628
border-radius: 0;
1729
background-color: #f9f9f9;
18-
/*font-size: 0.85em;*/
30+
font-size: 0.95em;
1931
}
2032

2133
.highlight {

0 commit comments

Comments
 (0)