Files
Keith Solomon 743aef0eec
Sync TODOs with Issues / sync_todos (push) Successful in 7s
feature: Mobile homepage updates
2026-06-16 06:38:17 -05:00

98 lines
2.1 KiB
CSS

/* Header styles */
.site-header {
/* Site header styles */
background: linear-gradient(90.15deg, #0773AC -39.25%, #032F46 100%);
.header__nav-main {
.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!;
}
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; }
}
}
@media (max-width: 767px) {
.site-header {
overflow: hidden;
width: 100%;
}
.site-header .nav-aux__container {
display: none;
}
.site-header .header__nav-main {
display: grid;
gap: 0.75rem;
grid-template-columns: minmax(0, 1fr) auto !important;
min-height: 4.375rem;
padding: 0.85rem 1rem !important;
padding-left: 1rem !important;
padding-right: 1rem !important;
width: 100%;
}
.site-header__logo {
height: 2.25rem;
margin-left: 1rem;
min-width: 0;
overflow: hidden;
width: 7.25rem;
}
.site-header__logo img {
height: 2.25rem;
max-width: none;
width: auto;
}
.site-header .nav-main {
align-items: center;
display: flex;
justify-content: flex-end;
min-width: 0;
}
.site-header .nav-main__toggle {
align-items: center;
background: var(--color-secondary);
border-radius: 0.375rem;
display: inline-flex;
height: 2.25rem;
justify-content: center;
margin-right: 1rem;
padding: 0.45rem;
width: 2.25rem;
}
.site-header .nav-main__toggle svg {
height: 1.15rem;
width: 1.15rem;
}
.site-header .nav-main__toggle svg,
.site-header .nav-main__toggle path,
.site-header .nav-main__toggle line {
fill: var(--color-white);
stroke: var(--color-white);
}
}