- Home controller with hero and services sections - Nav rebuilt on install: Home, Services, About, FAQ, Contact (CTA), Book An Appointment (CTA) - Entrypoint uses IS_SETUP check so failed installs retry on restart - Gitea Actions workflow builds and pushes multi-arch image to forge.quinefoundation.com Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
579 B
CSS
26 lines
579 B
CSS
.primary-nav__menu-link.nav-cta {
|
|
border: 2px solid #3b82f6;
|
|
border-radius: 999px;
|
|
color: #3b82f6;
|
|
padding: 0.25rem 1rem;
|
|
transition: background 0.15s, color 0.15s;
|
|
}
|
|
|
|
.primary-nav__menu-link.nav-cta:hover,
|
|
.primary-nav__menu-link.nav-cta:focus {
|
|
background: #3b82f6;
|
|
border-color: #3b82f6;
|
|
color: #fff;
|
|
}
|
|
|
|
.primary-nav__menu-link.nav-cta--primary {
|
|
background: #3b82f6;
|
|
border-color: #3b82f6;
|
|
color: #fff;
|
|
}
|
|
|
|
.primary-nav__menu-link.nav-cta--primary:hover,
|
|
.primary-nav__menu-link.nav-cta--primary:focus {
|
|
background: #1d4ed8;
|
|
border-color: #1d4ed8;
|
|
}
|