Generate series list page

This commit is contained in:
Nathan McCarty 2025-02-09 05:51:52 -05:00
parent baf8d6556b
commit 109165b80e
4 changed files with 49 additions and 8 deletions

View file

@ -54,10 +54,10 @@ a:visited {
color: var(--dim-0);
}
.post-body, .post-header, .post-blurbs, .tags, .tags .tag-blurb-post,
.series-header, .series-blurbs {
.series-header, .series-blurbs, .series-list {
background-color: var(--bg-0);
}
.post-blurb, .tags .tag-blurb {
.post-blurb, .tags .tag-blurb, .series-list-blurb {
background-color: var(--bg-1);
}
:not(.tags) .tag-blurb {
@ -66,7 +66,7 @@ a:visited {
:not(.tags) .tag-blurb-post {
background-color: var(--bg-1);
}
.post-title, .post-blurbs h1, .series-header h1 {
.post-title, .post-blurbs h1, .series-header h1, .series-list h1 {
color: var(--green);
}
.post-body h2, .post-body h3, .post-body h4 {

View file

@ -33,7 +33,7 @@ body, .post, .series {
align-items: center;
gap: var(--box-gap);
}
.post, .series {
.post, .series, .series-list {
width: 100%;
}
@ -108,7 +108,7 @@ body, .post, .series {
.post-body h2, .post-body h3, .post-body h4 {
text-align: center;
}
.post-blurbs, .series-blurbs {
.post-blurbs, .series-blurbs, .series-list {
display: flex;
flex-direction: column;
align-items: center;
@ -118,7 +118,7 @@ body, .post, .series {
border-radius: var(--box-radius);
box-sizing: border-box;
}
.post-blurb {
.post-blurb, .series-list-blurb {
width: 100%;
display: block;
border-radius: var(--box-radius);