chore: cleanup website files

- Remove website/dashboards/ directory
- Remove website/aitbc-proxy.conf
- Remove website/README.md
- Update website documentation files with minimum Python version
- Update website assets (CSS, JS) for improved performance
- Update docs/ with minimum Python version and updated paths
This commit is contained in:
aitbc
2026-04-21 21:15:55 +02:00
parent cdba253fb2
commit cad12ab2fe
22 changed files with 616 additions and 265 deletions

View File

@@ -21,10 +21,18 @@ body.dark {
--global-header-cta-text: #0f172a;
}
body.light {
--global-header-bg: rgba(255, 255, 255, 0.97);
--global-header-border: rgba(15, 23, 42, 0.08);
--global-header-text: #111827;
--global-header-muted: #6b7280;
--global-header-pill: rgba(37, 99, 235, 0.07);
--global-header-pill-hover: rgba(37, 99, 235, 0.15);
--global-header-accent: #2563eb;
--global-header-cta-text: #fff;
}
.global-header {
height: 90px;
box-sizing: border-box;
position: sticky;
top: 0;
width: 100%;
@@ -35,13 +43,13 @@ body.dark {
}
.global-header__inner {
max-width: 1160px;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.25rem;
height: 100%;
padding: 0.85rem 1.25rem;
display: flex;
align-items: center;
gap: 1.25rem;
flex-wrap: wrap;
justify-content: space-between;
}
@@ -127,10 +135,27 @@ body.dark {
flex-wrap: wrap;
}
.global-dark-toggle {
border: 1px solid var(--global-header-border);
background: transparent;
color: var(--global-header-text);
padding: 0.35rem 0.9rem;
border-radius: 999px;
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 0.35rem;
cursor: pointer;
transition: all 0.2s ease;
}
.global-dark-toggle:hover {
border-color: var(--global-header-accent);
color: var(--global-header-accent);
}
.global-subnav {
max-width: 1160px;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.25rem 0.75rem;
display: flex;
@@ -159,18 +184,10 @@ body.dark {
color: var(--global-header-accent);
}
@media (max-width: 960px) {
.global-header {
height: auto;
min-height: 90px;
padding: 1rem 0;
}
.global-header__inner {
flex-direction: column;
align-items: flex-start;
height: auto;
}
.global-header__actions {
@@ -182,6 +199,7 @@ body.dark {
width: 100%;
}
}
@media (max-width: 640px) {
.global-brand__text span {
font-size: 1rem;