Skip to content

Commit 57c85e8

Browse files
committed
Fix minor typos and font for the site title
1 parent 1e434a6 commit 57c85e8

4 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/_css/typography.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
TYPOGRAPHY
33
============================================ */
44

5+
/* H1 is site title only */
56
h1 {
67
font-size: 4em;
78
margin-bottom: 0.2em;
89
line-height: 1.1;
910
font-weight: 400;
11+
font-family: var(--font-handwriting), sans-serif;
1012
}
1113

1214
/* H1 is used for the site title; underline is not wanted there */

src/_data/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
{
4646
"name": "Personal Blog",
4747
"url": "/blog",
48-
"description": "Longer musings on topics of personal interests."
48+
"description": "Longer musings on topics of personal interest."
4949
},
5050
{
5151
"name": "Research Blog",

src/_includes/_microblog-content.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<!-- Microblog uses a distinct content template as the main body of text is included in the grid scroll page,
2+
rather than hiding full body like in long-form blogs -->
13
<!--thumbnail image, if any-->
24
{% if post.data.image %}
35
<img src="{{ post.data.image }}" alt="{{ post.data.alt }}">

src/style.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,13 @@ body[data-theme="dark"] .external-link-icon {
101101
TYPOGRAPHY
102102
============================================ */
103103

104+
/* H1 is site title only */
104105
h1 {
105106
font-size: 4em;
106107
margin-bottom: 0.2em;
107108
line-height: 1.1;
108109
font-weight: 400;
110+
font-family: var(--font-handwriting), sans-serif;
109111
}
110112

111113
/* H1 is used for the site title; underline is not wanted there */

0 commit comments

Comments
 (0)