Add back whitespace to block elements

This commit is contained in:
2025-07-20 11:50:13 -04:00
parent 7f1420a76e
commit 11bc99a2f0

View File

@@ -126,7 +126,8 @@ body > footer {
background-color: var(--background-secondary); background-color: var(--background-secondary);
color: var(--text-secondary); color: var(--text-secondary);
padding: 0.25rem; padding: 0.25rem;
text-align: center text-align: center;
line-height: 1.25;
} }
body > footer hr:first-child { body > footer hr:first-child {
display: none; display: none;
@@ -199,8 +200,11 @@ ul {
li { li {
line-height: 1.25; line-height: 1.25;
margin-bottom: 0.25rem;
}
li:last-child {
margin-bottom: 0.25rem;
} }
a { a {
text-decoration: none; text-decoration: none;
color: var(--link-primary); color: var(--link-primary);
@@ -236,7 +240,11 @@ p.meta {
p.meta span label { p.meta span label {
font-weight: bold; font-weight: bold;
} }
article > p,
#main_content > p,
#main_content > section > p {
line-height: 1.45;
}
.lane { .lane {
display: flex; display: flex;
flex-direction: row; flex-direction: row;