typography style updates; sort rss by publish date

This commit is contained in:
2023-06-17 14:51:07 -07:00
parent 5d36def32c
commit dc3b8ea5d8
6 changed files with 71 additions and 20 deletions

View File

@@ -76,3 +76,11 @@ dd + dt {
figcaption {
margin-block-start: 1.5rem;
}
/* ===== Pre-formatted Blocks ===== */
pre {
margin-block: 1.5rem;
}

View File

@@ -80,6 +80,14 @@ p {
/* ===== Inline Styles ===== */
del {
text-decoration: line-through;
}
/* ===== Links ===== */
@@ -111,6 +119,10 @@ a.icon-link svg.icon {
--icon-size: 1rem;
}
del a {
text-decoration: line-through underline;
}
@@ -255,8 +267,8 @@ table dl {
pre {
color: var(--theme-code-normal);
font-family: var(--font-monospace);
margin-block: 3rem;
margin-inline: 2rem;
margin-inline-start: 1rem;
margin-inline-end: 5rem;
padding-block: 0.5rem;
padding-inline: 1rem;
border: 0.1rem solid var(--theme-line);
@@ -266,6 +278,12 @@ pre {
background: var(--theme-bg-light);
}
@media screen and (max-width: 60rem) {
pre {
margin-inline: 0;
}
}
@@ -280,8 +298,11 @@ code, samp {
:not(pre) > :is(code, samp) {
color: inherit;
background: var(--theme-bg-light);
margin-inline: 0.15rem;
padding-block: 0.1rem;
padding-inline: 0.25rem;
border: 0.1rem solid var(--theme-line);
border-radius: 0.2rem;
}

View File

@@ -75,3 +75,11 @@ dd + dt {
figcaption {
margin-block-start: 2rem;
}
/* ===== Pre-formatted Blocks ===== */
pre {
margin-block: 2rem;
}