sections

This commit is contained in:
mi
2025-11-14 15:53:17 +10:00
parent 7a9f64ee17
commit 04cd72b8d8
4 changed files with 87 additions and 21 deletions

View File

@@ -468,6 +468,25 @@ main {
margin-top: var(--space-md);
}
/* Section Headers for Archive */
.section-header {
margin-top: var(--space-2xl);
margin-bottom: var(--space-lg);
padding-bottom: var(--space-sm);
border-bottom: var(--border-width-thin) solid var(--border-color);
}
.section-header:first-child {
margin-top: 0;
}
.section-header h2 {
color: var(--color-text);
font-size: var(--font-size-xl);
text-transform: uppercase;
letter-spacing: var(--letter-spacing-tight);
}
.archive-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(var(--archive-grid-min), 1fr));