Commit 63fe7d2b (fan-control) was made with a bare `git commit` in the shared infra working tree and inadvertently swept in a parallel session's staged f1-stream-extraction work (main.tf repoint, ~48 files/ removals, ci-cd.md + .claude docs, two extraction plan docs). This returns every f1-stream-related path to its pre-63fe7d2b state (3493c347) so that extraction can be committed cleanly by its own session. The fan-control files added in 63fe7d2b are untouched. [ci skip] Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
35 lines
701 B
CSS
35 lines
701 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-f1-red: #e10600;
|
|
--color-f1-red-dark: #b50500;
|
|
--color-f1-bg: #111111;
|
|
--color-f1-surface: #1a1a1a;
|
|
--color-f1-surface-hover: #242424;
|
|
--color-f1-border: #2a2a2a;
|
|
--color-f1-text: #e0e0e0;
|
|
--color-f1-text-muted: #888888;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--color-f1-bg);
|
|
color: var(--color-f1-text);
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
/* Scrollbar styling */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: var(--color-f1-bg);
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-f1-border);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
/* HLS video player */
|
|
video::-webkit-media-controls {
|
|
display: none !important;
|
|
}
|