Initial commit — Director app (API + UI)

This commit is contained in:
2026-04-07 15:18:16 -05:00
commit 5f29db67f3
44 changed files with 6727 additions and 0 deletions

37
ui/src/index.css Normal file
View File

@@ -0,0 +1,37 @@
@import "tailwindcss";
@theme {
--font-sans: "Inter", system-ui, sans-serif;
--font-display: "Fraunces", Georgia, serif;
--font-mono: "JetBrains Mono", ui-monospace, monospace;
}
:root {
font-family: var(--font-sans);
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
.font-display {
font-family: var(--font-display);
font-optical-sizing: auto;
}
.font-mono {
font-family: var(--font-mono);
}
/* Tabular numerals — critical for timestamps and metrics */
.tabular {
font-variant-numeric: tabular-nums;
font-feature-settings: "tnum";
}
/* Subtle pulse for active/working states */
@keyframes pulse-soft {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.pulse-soft {
animation: pulse-soft 2s ease-in-out infinite;
}