This commit is contained in:
Timo Knuth
2025-10-17 13:45:33 +02:00
parent cd3ee5fc8f
commit 254e6490b8
36 changed files with 1712 additions and 917 deletions

View File

@@ -31,12 +31,9 @@ body {
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
background: linear-gradient(to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
}
a {
@@ -145,4 +142,31 @@ a {
position: relative;
height: 300px;
width: 100%;
}
/* Blog post spacing overrides */
.prose h2 {
margin-top: 1.75rem !important;
margin-bottom: 0.875rem !important;
padding-top: 0.875rem !important;
font-size: 2.25rem !important;
line-height: 2.5rem !important;
}
.prose p {
margin-bottom: 0.875rem !important;
}
.prose ul {
margin-top: 0.875rem !important;
margin-bottom: 0.875rem !important;
}
.prose blockquote {
margin-top: 1.25rem !important;
margin-bottom: 1.25rem !important;
}
.prose .lead {
margin-bottom: 1.25rem !important;
}