nav__item

This commit is contained in:
NOrtmann1
2026-05-11 10:01:18 +02:00
parent 3e03f0aa90
commit d37e6460ab
2 changed files with 27 additions and 11 deletions
+24 -8
View File
@@ -27,14 +27,6 @@ CSS für den Block Navbar mit seinen Elementen nach BEM
.nav__item {
position: relative;
margin: 0 0.5rem;
display: inline-block;
font-weight: 600;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem 1rem;
color: #fff;
text-decoration: none;
}
.nav__dropdown-toggle {
@@ -65,6 +57,30 @@ CSS für den Block Navbar mit seinen Elementen nach BEM
font-weight: 600;
}
.nav__link {
display: inline-block;
font-weight: 600;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem 1rem;
color: #fff;
text-decoration: none;
}
.nav__button {
display: inline-block;
background: #fff;
border: none;
border-radius: 4px;
padding: 0.5rem 1rem;
cursor: pointer;
color: #333;
text-decoration: none;
font-weight: 600;
margin-left: 0.5rem;
}
.nav__dropdown:hover .nav__dropdown-menu {
display: block;
}