Replace the entire Python/FastAPI backend with a Node.js/TypeScript stack: - Framework: Hono + @hono/node-server - Templates: Nunjucks (.njk) replacing Jinja2 (.html) - ORM: Drizzle ORM with mysql2 (same MariaDB schema, no migrations needed) - Sessions: hono-sessions with CookieStore - CSS: Pico CSS v2 replacing Bootstrap 5 (Bootstrap Icons CDN kept) - Dev: tsx watch; Prod: tsc + node dist/index.js Original Python app preserved in web-python/ as backup. Updated Dockerfile.web and docker-compose.yml for Node.js deployment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
822 B
CSS
40 lines
822 B
CSS
/* Brand overrides */
|
|
:root {
|
|
--bs-primary: #F05023;
|
|
--bs-primary-rgb: 240, 80, 35;
|
|
--bs-link-color: #0986E2;
|
|
--bs-link-hover-color: #0670c0;
|
|
}
|
|
|
|
.brand-logo {
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
color: #F05023 !important;
|
|
}
|
|
|
|
.brand-border {
|
|
border-color: #F05023 !important;
|
|
}
|
|
|
|
.btn-primary {
|
|
--bs-btn-bg: #F05023;
|
|
--bs-btn-border-color: #F05023;
|
|
--bs-btn-hover-bg: #d44420;
|
|
--bs-btn-hover-border-color: #d44420;
|
|
--bs-btn-active-bg: #c03d1c;
|
|
--bs-btn-active-border-color: #c03d1c;
|
|
}
|
|
|
|
.btn-secondary {
|
|
--bs-btn-bg: #0986E2;
|
|
--bs-btn-border-color: #0986E2;
|
|
--bs-btn-hover-bg: #0770c0;
|
|
--bs-btn-hover-border-color: #0770c0;
|
|
--bs-btn-active-bg: #065fa3;
|
|
--bs-btn-active-border-color: #065fa3;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #F05023 !important;
|
|
}
|