Files
cutieguwu-site/src/partials/_nav_title.scss
Cutieguwu b4906abd19 Tons of changes, all of which I've forgotten. A number of refactors
exist. Nav menu partly operational on mobile.
2025-08-16 15:02:54 -04:00

28 lines
623 B
SCSS

.nav_title {
// Need to force inheritence, otherwise <a> would require
// overrides for all color states from base styling for element.
color: inherit;
text-decoration: inherit;
font-family: var(--font-family-generic);
font-weight: bold;
white-space: nowrap;
margin: inherit;
// padding: 0 var(--spacing-small);
transition: var(--transition-fade);
display: block;
}
.nav_title:hover {
color: var(--highlight-hover);
transition: var(--transition-cut);
}
/*
@media only screen and (max-width: 500px) {
.nav_title {
padding: var(--padding-mobile);
}
}
*/