48 lines
857 B
CSS
48 lines
857 B
CSS
.home-nav {
|
|
min-height: 16px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #2d3b50; /* helleres Lapis-/Hellblau */
|
|
}
|
|
|
|
/* Inner zentriert */
|
|
.home-nav__inner {
|
|
flex: 1;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* List: 5 gleich große Bereiche */
|
|
.home-nav__list {
|
|
width: 100%;
|
|
display: flex;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Kategorien */
|
|
.home-nav__list li {
|
|
flex: 1;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
font-weight: bold;
|
|
padding: 1rem 0;
|
|
position: relative;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Trennstriche */
|
|
.home-nav__list li:not(:last-child)::after {
|
|
content: "";
|
|
position: absolute;
|
|
right: 0;
|
|
top: 20%;
|
|
height: 60%;
|
|
width: 1px;
|
|
background-color: rgba(255, 255, 255, 0.6);
|
|
}
|