Files
CWC/styles/components/site-header.css
T
Keith Solomon 9137fdb0f7
Sync TODOs with Issues / sync_todos (push) Successful in 16s
feature: Update navigation styles
Co-authored-by: Copilot <copilot@github.com>
2026-05-09 14:35:16 -05:00

34 lines
689 B
CSS

/* Header styles */
.site-header {
/* Site header styles */
background: linear-gradient(90.15deg, #0773AC -39.25%, #032F46 100%);
.header__nav-main {
max-width: 80.5rem;
.nav-main { @apply self-stretch; }
}
.nav-aux__container {
background: linear-gradient(90.17deg, #2189C0 -51.3%, #0773AC 55.75%);
.header__nav-aux {
@apply px-0!;
max-width: 80.5rem;
}
a {
/* Link styles */
color: var(--color-white);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
&:hover { color: var(--color-primary-800); }
}
#globalSearch { @apply text-14px text-light; }
}
}