Minor tweaks to h3 and sup

This commit is contained in:
Nathan Upchurch 2024-11-12 18:47:17 -06:00
parent 0ad1596646
commit 51a1693265

View File

@ -179,6 +179,10 @@ html {
font-size: 13px; font-size: 13px;
overflow-y: scroll; overflow-y: scroll;
} }
article:not(.postlist-item) h3 {
margin-bottom: var(--space-s);
margin-top: var(--space-m);
}
blockquote p { blockquote p {
font-style: italic; font-style: italic;
} }
@ -323,11 +327,9 @@ h2 {
padding-bottom: var(--space-l); padding-bottom: var(--space-l);
padding-top: var(--space-xl); padding-top: var(--space-xl);
} }
h3 { h3 {
font-size: var(--step-1); font-size: var(--step-1);
} }
.logo { .logo {
filter: var(--logo-filter); filter: var(--logo-filter);
} }
@ -344,6 +346,9 @@ main > p > a > img {
.post > p { .post > p {
margin: 0; margin: 0;
padding-bottom: var(--space-s); padding-bottom: var(--space-s);
&:has(wc-card) {
padding-bottom: 0;
}
} }
pre { pre {
grid-column: var(--span-grid); grid-column: var(--span-grid);
@ -743,13 +748,15 @@ nav ul {
display: flex; display: flex;
flex-flow: column wrap; flex-flow: column wrap;
} }
.post-image { .post-image {
width: 15rem; width: 15rem;
height: 15rem; height: 15rem;
object-fit: cover; object-fit: cover;
object-position: 50% 50%; object-position: 50% 50%;
} }
sup {
line-height: 0;
}
@container postlist (max-width: 500px) { @container postlist (max-width: 500px) {
.postlist-item { .postlist-item {