aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/custom.css
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2024-03-23 18:02:45 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-03-23 18:07:21 +0100
commitfbd41d395916176dde11bb0e417f1210f34eb4ab (patch)
tree7384a50b1a90ba5909d8f93f589df661640681e6 /src/css/custom.css
parentSimplify compression (diff)
downloadblog-fbd41d395916176dde11bb0e417f1210f34eb4ab.tar.gz
blog-fbd41d395916176dde11bb0e417f1210f34eb4ab.tar.zst
blog-fbd41d395916176dde11bb0e417f1210f34eb4ab.zip
Add blog
Site structure follows SEO tips from https://johnnyreilly.com/how-we-fixed-my-seo * The blog pages have as simple of an URL as possible. To this end, the home page of the site is actually the first index page of the blog. * Customize the blog index page BlogListPage component to show the landing page as the first index page. * Rename /archive to /blog to avoid a dated feel. * Remove the date from post URLs using the slug property.
Diffstat (limited to 'src/css/custom.css')
-rw-r--r--src/css/custom.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/css/custom.css b/src/css/custom.css
index c2cda19..bd6e179 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -84,11 +84,13 @@ kbd {
84 84
85h1, 85h1,
86h2, 86h2,
87.markdown > h3,
87.button { 88.button {
88 --casl: 1; 89 --casl: 1;
89} 90}
90 91
91h3 { 92h3,
93.markdown > h4 {
92 --casl: 0.5; 94 --casl: 0.5;
93} 95}
94 96
@@ -107,3 +109,7 @@ h3 {
107 --casl: 0; 109 --casl: 0;
108 --mono: 1; 110 --mono: 1;
109} 111}
112
113.hero__subtitle {
114 font-weight: 500;
115}