Generate pages for individual tags

This commit is contained in:
Nathan McCarty 2025-02-07 01:58:44 -05:00
parent 20ecef3b3f
commit 2072f88711
4 changed files with 35 additions and 7 deletions

View file

@ -53,16 +53,22 @@ a:visited {
.site-tagline {
color: var(--dim-0);
}
.post-body, .post-header, .post-blurbs, .tags, .tag-blurb-post {
.post-body, .post-header, .post-blurbs, .tags, .tags .tag-blurb-post {
background-color: var(--bg-0);
}
.post-blurb, .tag-blurb {
.post-blurb, .tags .tag-blurb {
background-color: var(--bg-1);
}
.post-title, .post-blurbs > h1 {
:not(.tags) .tag-blurb {
background-color: var(--bg-0);
}
:not(.tags) .tag-blurb-post {
background-color: var(--bg-1);
}
.post-title, .post-blurbs h1 {
color: var(--green);
}
.post-body > h2, .post-body > h3, .post-body > h4 {
.post-body h2, .post-body h3, .post-body h4 {
color: var(--fg-1);
}
blockquote {

View file

@ -83,11 +83,11 @@ body, .post {
border-radius: var(--box-radius);
box-sizing: border-box;
}
.post-body > p {
.post-body p {
margin: auto var(--box-margin-horz);
align-self: stretch;
}
.post-title > h1 {
.post-title h1 {
margin-top: 0px;
margin-bottom: 0px;
}
@ -102,7 +102,7 @@ body, .post {
.post-read-time {
text-decoration: underline dotted;
}
.post-body > h2, .post-body > h3, .post-body > h4 {
.post-body h2, .post-body h3, .post-body h4 {
text-align: center;
}
.post-blurbs {