ui: white header bar with primary color accents

Changed header from colored gradient background to clean white
with primary-color text, border-bottom accent line, and updated
button styles. Logos now display nicely against white background.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 17:15:43 +02:00
parent d8de69b9b9
commit caf0ce8aa2

View File

@@ -134,15 +134,16 @@ body {
/* Header */ /* Header */
header { header {
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); background: #fff;
color: #fff; color: var(--primary-color);
padding: 1rem 2rem; padding: 1rem 2rem;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
flex-wrap: wrap; flex-wrap: wrap;
gap: 0.5rem; gap: 0.5rem;
box-shadow: 0 2px 12px rgba(0,0,0,0.15); box-shadow: 0 1px 6px rgba(0,0,0,0.1);
border-bottom: 2px solid var(--primary-color);
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 100; z-index: 100;
@@ -157,16 +158,19 @@ header {
.brand-icon { .brand-icon {
font-size: 1.8rem; font-size: 1.8rem;
line-height: 1; line-height: 1;
color: var(--primary-color);
} }
.header-left h1 { .header-left h1 {
font-size: 1.3rem; font-size: 1.3rem;
letter-spacing: -0.3px; letter-spacing: -0.3px;
color: var(--primary-color);
} }
.subtitle { .subtitle {
font-size: 0.8rem; font-size: 0.8rem;
opacity: 0.7; opacity: 0.6;
color: #555;
} }
.header-right { .header-right {
@@ -185,7 +189,8 @@ header {
.user-info { .user-info {
font-size: 0.85rem; font-size: 0.85rem;
opacity: 0.8; opacity: 0.7;
color: #555;
padding-right: 0.5rem; padding-right: 0.5rem;
border-right: 1px solid rgba(255,255,255,0.2); border-right: 1px solid rgba(255,255,255,0.2);
} }
@@ -503,8 +508,8 @@ footer {
.btn-secondary { .btn-secondary {
background: transparent; background: transparent;
color: #fff; color: var(--primary-color);
border: 2px solid rgba(255,255,255,0.3); border: 2px solid var(--primary-color);
padding: 8px 18px; padding: 8px 18px;
border-radius: 8px; border-radius: 8px;
cursor: pointer; cursor: pointer;
@@ -513,8 +518,8 @@ footer {
} }
.btn-secondary:hover { .btn-secondary:hover {
border-color: #fff; background: var(--primary-color);
background: rgba(255,255,255,0.1); color: #fff;
} }
.btn-danger { .btn-danger {