24 lines
470 B
CSS
24 lines
470 B
CSS
.nav__item {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
border-bottom: 2px solid transparent;
|
|
font-family: var(--system-ui);
|
|
font-weight: 400;
|
|
transition:all .12s ease-out;
|
|
opacity: 0.88;
|
|
}
|
|
|
|
.nav__item:hover {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.nav__item.is-active {
|
|
font-weight: 500;
|
|
color: var(--text-primary);
|
|
border-bottom: 2px solid var(--icon-primary);
|
|
opacity: 1;
|
|
} |