Break up and optimize dropdown styling.

This commit is contained in:
Cutieguwu
2025-07-21 14:27:47 -04:00
parent 689354fc7b
commit b8b518555f
4 changed files with 65 additions and 69 deletions

View File

@@ -0,0 +1,17 @@
.nav_title {
/* Need to force inheritence, otherwise <a> would require overrides for all color states from base styling for element. */
color: inherit;
text-decoration: none;
font-family: var(--font-family-generic);
font-weight: bold;
white-space: nowrap;
margin: 0 var(--spacing-horizontal);
transition: var(--transition-fade);
text-transform: uppercase;
}
.nav_title:hover {
color: var(--highlight-hover);
transition: var(--transition-cut);
}