| 1 | /* App-local styles for quotes. The shared design system (palette, typography, |
| 2 | forms, admin lists) comes from /assets/darkmatter.css. Only the minimal |
| 3 | centered landing "hero" is added here, since darkmatter's body is a |
| 4 | left-aligned 700px column and does not vertically center. */ |
| 5 | |
| 6 | .quote-hero { |
| 7 | width: 100%; |
| 8 | min-height: 100vh; |
| 9 | display: flex; |
| 10 | flex-direction: column; |
| 11 | justify-content: center; |
| 12 | align-items: center; |
| 13 | text-align: left; |
| 14 | gap: 1.5rem; |
| 15 | } |
| 16 | |
| 17 | .quote-hero .quote-text { |
| 18 | margin: 0; |
| 19 | padding: 0; |
| 20 | border: 0; |
| 21 | font-size: 1rem; |
| 22 | max-width: 38rem; |
| 23 | color: #ffffff; |
| 24 | } |
| 25 | |
| 26 | .quote-hero .attribution { |
| 27 | margin: 0; |
| 28 | opacity: 0.5; |
| 29 | font-size: 0.875rem; |
| 30 | } |
| 31 | |
| 32 | .quote-hero cite { |
| 33 | font-style: italic; |
| 34 | } |
| 35 | |
| 36 | .admin-list-meta cite { |
| 37 | font-style: italic; |
| 38 | } |