32 lines
454 B
CSS
32 lines
454 B
CSS
nav {
|
|
background-color: var(--h-f-bg);
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
font-size: 1.4rem;
|
|
display: flex;
|
|
align-items: center;
|
|
color: white;
|
|
}
|
|
|
|
.navbar-brand img {
|
|
height: 30px;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.nav-link {
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
color: white;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover,
|
|
.active-link {
|
|
color: #ffcc00 !important;
|
|
}
|