8223a566e4
A design handoff bundle generated by Claude Design (claude.ai/design) on 2026-05-02. Defines the Bloomberg/F1-pit-wall aesthetic for TRM: - ink-on-paper base + race-flag red accent (#E8412B) - square-edged everything, sharp printed offset shadows - mono numerics (JetBrains Mono) for any changing value - Goldplay (real licensed font, three weights in bundle fonts/) - four surfaces designed: dashboard / leaderboard / mobile / marketing (SPA scope is the first two) The bundle is committed in-tree at TRM_Design_System-handoff/ so 3.8 has the full source material when it picks the work up. Includes: - Top-level + project READMEs (the design spec) - chats/chat1.md (intent + iteration history) - colors_and_type.css (token set, drop-in for Tailwind 4 @theme) - fonts/ (Goldplay regular/semibold/bold) - ui_kits/ (HTML prototypes per surface) - preview/ (per-token visual reference cards) Updated phase-3-dogfood-readiness/README.md task 3.8 row to point at the bundle and document the recommended approach (retheme shadcn via CSS variable overrides + Tailwind 4 @theme, not replace). Why deferred: foundational tokens are non-blocking for Phase 1 (login + placeholder home) and Phase 2 (live map without chrome). Applying them now would either delay dogfood-blocking work or land partial styling that gets reworked when 3.8 lands the full pass.
33 lines
2.2 KiB
HTML
33 lines
2.2 KiB
HTML
<!doctype html><html><head><meta charset="utf-8">
|
|
<link rel="stylesheet" href="../colors_and_type.css">
|
|
<link rel="stylesheet" href="_card.css">
|
|
<style>
|
|
body { padding: 0; }
|
|
.wrap { padding: 18px; }
|
|
table { width: 100%; border-collapse: collapse; border: 1px solid var(--ink); }
|
|
th, td { text-align: left; padding: 0 10px; height: 28px; font-family: var(--font-mono); font-size: 12px; border-bottom: 1px solid var(--hairline); }
|
|
th { background: var(--paper-2); font-weight: 600; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-3); border-bottom: 1px solid var(--ink); }
|
|
tr:nth-child(even) td { background: rgba(14,14,12,0.025); }
|
|
td.num { text-align: right; font-variant-numeric: tabular-nums; }
|
|
.pos { font-weight: 700; color: var(--ink); }
|
|
.pos.gold { color: var(--flag); }
|
|
.gain { color: var(--green); }
|
|
.loss { color: var(--flag); }
|
|
.name { font-family: var(--font-display); font-weight: 500; font-size: 13px; }
|
|
</style></head>
|
|
<body>
|
|
<div class="wrap">
|
|
<div class="overline" style="margin-bottom:10px;">Leaderboard table · dense 28px</div>
|
|
<table>
|
|
<thead><tr><th style="width:40px;">POS</th><th style="width:50px;">BIB</th><th>NAME</th><th>WAVE</th><th class="num">SPLIT 3</th><th class="num">GAP</th><th class="num">PACE</th></tr></thead>
|
|
<tbody>
|
|
<tr><td class="pos gold">1</td><td>247</td><td class="name">Maya Chen</td><td>Elite</td><td class="num">00:42:18.4</td><td class="num">—</td><td class="num">04:13</td></tr>
|
|
<tr><td class="pos">2</td><td>188</td><td class="name">Ravi Park</td><td>Elite</td><td class="num">00:42:22.6</td><td class="num loss">+0:04.2</td><td class="num">04:14</td></tr>
|
|
<tr><td class="pos">3</td><td>044</td><td class="name">Noemi Vega</td><td>Elite</td><td class="num">00:42:30.1</td><td class="num loss">+0:11.7</td><td class="num">04:15</td></tr>
|
|
<tr><td class="pos">4</td><td>302</td><td class="name">Tomás Riera</td><td>Elite</td><td class="num">00:42:55.0</td><td class="num loss">+0:36.6</td><td class="num">04:18</td></tr>
|
|
<tr><td class="pos">5</td><td>119</td><td class="name">Anika Joshi</td><td>Elite</td><td class="num">00:43:01.2</td><td class="num loss">+0:42.8</td><td class="num">04:19</td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body></html>
|