|
| 1 | +:root { |
| 2 | + color-scheme: light dark; |
| 3 | +} |
| 4 | + |
1 | 5 | * { |
2 | 6 | box-sizing: border-box; |
3 | 7 | } |
4 | 8 |
|
5 | 9 | html, body { |
6 | | - font-family: system-ui, -apple-system, sans-serif; |
7 | | - font-size: 1rem; |
| 10 | + font-family: var(--font-sans, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'); |
| 11 | + font-size: var(--font-text-md-size, 1rem); |
| 12 | + font-weight: var(--font-weight-normal, 400); |
| 13 | + line-height: var(--font-text-md-line-height, 1.5); |
| 14 | + color: var(--color-text-primary, light-dark(#1f2937, #f3f4f6)); |
| 15 | +} |
| 16 | + |
| 17 | +h1 { |
| 18 | + font-size: var(--font-heading-3xl-size, 2.25rem); |
| 19 | + line-height: var(--font-heading-3xl-line-height, 1.1); |
| 20 | +} |
| 21 | +h2 { |
| 22 | + font-size: var(--font-heading-2xl-size, 1.875rem); |
| 23 | + line-height: var(--font-heading-2xl-line-height, 1.2); |
| 24 | +} |
| 25 | +h3 { |
| 26 | + font-size: var(--font-heading-xl-size, 1.5rem); |
| 27 | + line-height: var(--font-heading-xl-line-height, 1.25); |
| 28 | +} |
| 29 | +h4 { |
| 30 | + font-size: var(--font-heading-lg-size, 1.25rem); |
| 31 | + line-height: var(--font-heading-lg-line-height, 1.3); |
| 32 | +} |
| 33 | +h5 { |
| 34 | + font-size: var(--font-heading-md-size, 1rem); |
| 35 | + line-height: var(--font-heading-md-line-height, 1.4); |
| 36 | +} |
| 37 | +h6 { |
| 38 | + font-size: var(--font-heading-sm-size, 0.875rem); |
| 39 | + line-height: var(--font-heading-sm-line-height, 1.4); |
8 | 40 | } |
9 | 41 |
|
10 | | -code { |
| 42 | +code, pre, kbd { |
| 43 | + font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace); |
11 | 44 | font-size: 1em; |
12 | 45 | } |
13 | 46 |
|
14 | | -/* Server time fills remaining width for consistent E2E screenshot masking */ |
15 | | -#server-time { |
16 | | - flex: 1; |
17 | | - min-width: 0; |
| 47 | +b, strong { |
| 48 | + font-weight: var(--font-weight-bold, 700); |
18 | 49 | } |
0 commit comments