| 1 | .archive-posts { |
| 2 | width: 100%; |
| 3 | font-size: var(--text-base); |
| 4 | } |
| 5 | |
| 6 | .archive-year { |
| 7 | margin-top: 40px; |
| 8 | } |
| 9 | |
| 10 | .archive-year:not(:last-of-type) { |
| 11 | border-bottom: 2px solid var(--border); |
| 12 | } |
| 13 | |
| 14 | .archive-month { |
| 15 | display: flex; |
| 16 | align-items: flex-start; |
| 17 | padding: 10px 0; |
| 18 | } |
| 19 | |
| 20 | .archive-month-header { |
| 21 | margin: 25px 0; |
| 22 | width: 200px; |
| 23 | } |
| 24 | |
| 25 | .archive-month:not(:last-of-type) { |
| 26 | border-bottom: 1px solid var(--border); |
| 27 | } |
| 28 | |
| 29 | .archive-entry { |
| 30 | position: relative; |
| 31 | padding: 5px; |
| 32 | margin: 10px 0; |
| 33 | } |
| 34 | |
| 35 | .archive-entry-title { |
| 36 | margin: 5px 0; |
| 37 | font-weight: 400; |
| 38 | } |
| 39 | |
| 40 | .archive-count, |
| 41 | .archive-meta { |
| 42 | color: var(--color-text-muted); |
| 43 | font-size: var(--text-sm); |
| 44 | } |