Skip to content

Commit bf39459

Browse files
committed
Quartz sync: Nov 26, 2024, 10:14 PM
1 parent 60d6550 commit bf39459

File tree

6 files changed

+27
-2
lines changed

6 files changed

+27
-2
lines changed

quartz.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const config: QuartzConfig = {
2626
cdnCaching: false,
2727
typography: {
2828
header: "Zodiak",
29-
body: "ClashDisplay",
29+
body: "GeneralSans",
3030
code: "JetBrainsMono",
3131
},
3232
colors: {

quartz/components/PageTitle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const PageTitle: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompo
1616
PageTitle.css = `
1717
.page-title {
1818
margin: 0;
19-
font-family: Aktura, sans-serif;
19+
font-family: Aktura, ClashDisplay, sans-serif;
2020
font-weight: 400;
2121
font-size: 2.5rem;
2222
}
108 KB
Binary file not shown.
31.8 KB
Binary file not shown.
37.2 KB
Binary file not shown.

quartz/styles/custom.scss

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010
font-style: normal;
1111
}
1212

13+
@font-face {
14+
font-family: 'GeneralSans';
15+
src: url("/static/fonts/GeneralSans-Variable.woff2") format("woff2"),
16+
url("/static/fonts/GeneralSans-Variable.woff") format("woff"),
17+
url("/static/fonts/GeneralSans-Variable.ttf") format("truetype");
18+
font-weight: 200 700;
19+
font-display: swap;
20+
font-style: normal;
21+
}
22+
1323
@font-face {
1424
font-family: 'Zodiak';
1525
src: url("/static/fonts/Zodiak-Variable.woff2") format("woff2"),
@@ -20,6 +30,7 @@
2030
font-style: normal;
2131
}
2232

33+
2334
@font-face {
2435
font-family: 'JetBrainsMono';
2536
src: url("/static/fonts/JetBrainsMono-Variable.woff2") format("woff2"),
@@ -30,6 +41,16 @@
3041
font-style: normal;
3142
}
3243

44+
@font-face {
45+
font-family: 'Aktura';
46+
src: url("/static/fonts/Aktura-Regular.woff2") format("woff2"),
47+
url("/static/fonts/Aktura-Regular.woff") format("woff"),
48+
url("/static/fonts/Aktura-Regular.ttf") format("truetype");
49+
font-weight: 400;
50+
font-display: swap;
51+
font-style: normal;
52+
}
53+
3354
img[alt*="center"] {
3455
display: block;
3556
margin-left: auto;
@@ -44,4 +65,8 @@ img[alt*="right"] {
4465
margin-top: 2px;
4566
}
4667

68+
article {
69+
font-size: large;
70+
}
71+
4772
// put your custom CSS here!

0 commit comments

Comments
 (0)