Files
CollapsibleNavMenu/Blazor_Server/Components/Layout/NavMenu.razor.css
2024-07-28 18:35:28 +01:00

83 lines
1.3 KiB
CSS

.navbar-toggler {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row {
height: 3.5rem;
background-color: rgba(0, 0, 0, 0.4);
}
.bottom-row {
position: absolute;
bottom: 0;
padding-bottom: 10px;
text-align: right;
width: 100%;
padding-right: 28px;
}
.icon-menu-arrow {
text-align: right;
}
.navbar-brand {
font-size: 1.1rem;
}
.oi {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type {
padding-top: 1rem;
}
.nav-item:last-of-type {
padding-bottom: 1rem;
}
.nav-item ::deep a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item ::deep a.active {
background-color: rgba(255, 255, 255, 0.25);
color: white;
}
.nav-item ::deep a:hover {
background-color: rgba(255, 255, 255, 0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler {
display: none;
}
.collapse {
display: block;
}
}
.nav-item label,
.sub-menu label {
margin-left: 8px;
}
.nav-item .bi-arrow-icon {
padding-left: 8px;
}