馃 distributed transcription service
thistle.dunkirk.sh
1/* Header styles shared across all pages */
2
3header {
4 position: sticky;
5 top: 0;
6 z-index: 1000;
7 background: var(--background);
8 border-bottom: 2px solid var(--secondary);
9 padding: 1rem 2rem;
10 margin: -2rem -2rem 2rem -2rem;
11}
12
13.header-content {
14 max-width: 1200px;
15 margin: 0 auto;
16 display: flex;
17 justify-content: space-between;
18 align-items: center;
19}
20
21.site-title {
22 font-size: 1.5rem;
23 font-weight: 600;
24 color: var(--text);
25 text-decoration: none;
26 display: flex;
27 align-items: center;
28 gap: 0.5rem;
29}
30
31.site-title img {
32 width: 2rem;
33 height: 2rem;
34}
35
36.site-title:hover {
37 color: var(--primary);
38}