Reorganzing projects

This commit is contained in:
6d486f49
2026-06-22 16:27:28 -04:00
parent c11d8ecc82
commit 960db5f4fd
32 changed files with 759 additions and 259 deletions
+66
View File
@@ -0,0 +1,66 @@
.navbar-toggler {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row {
min-height: 3.5rem;
background-color: rgba(0, 0, 0, 0.4);
}
.navbar-brand {
font-size: 1.1rem;
}
.nav-icon {
margin-right: 0.75rem;
font-size: 1.05rem;
width: 1.25rem;
text-align: center;
}
.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.37);
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-scrollable {
height: calc(100vh - 3.5rem);
overflow-y: auto;
}
}