58 lines
894 B
CSS
58 lines
894 B
CSS
/*
|
|
* Haupt-Navigationsleiste
|
|
*/
|
|
|
|
.mainNav{
|
|
display: inline-flex;
|
|
width: 98%;
|
|
margin: 1% 1% 1% 1%;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
/*
|
|
background: #FF8100;
|
|
*/
|
|
}
|
|
.mainNavElement{
|
|
font-family: "Orbitron-Medium", Impact, Charcoal, sans-serif;
|
|
padding-top: .2em;/* wg. Orbitron */
|
|
font-size: 1.5em;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
border-radius: 1em;
|
|
border-style: outset;
|
|
border-color: antiquewhite;
|
|
background: #FF8100;
|
|
}
|
|
|
|
.mainNav a{
|
|
color: inherit;
|
|
}
|
|
.mainNav a:hover{
|
|
text-decoration: underline overline;
|
|
}
|
|
.activeNav {
|
|
color: #A80101;
|
|
border-style: inset;
|
|
}
|
|
|
|
.mainNavElementIcon{
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 640px){
|
|
.mainNav{
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
.mainNavElement{
|
|
flex-basis: 20%;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
@media (min-width: 1280px){
|
|
.mainNav{
|
|
margin-top: 1vmin;
|
|
margin-bottom: 1vmin;
|
|
}
|
|
}
|