/* === NAVBAR HOVER COLOR - LIGHT THEME === */
/* Menu items */
html.theme-light .super-navbar__item,
html.theme-light .super-navbar__button {
transition: color 0.2s ease;
}
html.theme-light .super-navbar__item:hover,
html.theme-light .super-navbar__button:hover {
color: #ff6600; /* change items color */
}
/* CTA */
html.theme-light .super-navbar__cta {
transition: color 0.2s ease, background-color 0.2s ease;
}
html.theme-light .super-navbar__cta:hover {
color: #ffffff; /* change CTA text color */
background-color: #ff6600; /* change CTA bg color */
}
/* === END OF NAVBAR HOVER COLOR - LIGHT THEME === */
/* === NAVBAR HOVER COLOR - DARK THEME === */
/* Menu items */
html.theme-dark .super-navbar__item,
html.theme-dark .super-navbar__button {
transition: color 0.2s ease;
}
html.theme-dark .super-navbar__item:hover,
html.theme-dark .super-navbar__button:hover {
color: #f3dd18; /* change items color */
}
/* CTA */
html.theme-dark .super-navbar__cta {
transition: color 0.2s ease, background-color 0.2s ease;
}
html.theme-dark .super-navbar__cta:hover {
color: #000000; /* change CTA text color */
background-color: #f3dd18; /* change CTA bg color */
}
/* === END OF NAVBAR HOVER COLOR - DARK THEME === */