homepage/src/components/nav.module.css

66 lines
926 B
CSS

.header {
background-color: #0e1e38;
}
.headerContent {
font-size: 2rem;
margin: 0 auto;
max-width: 1000px;
padding: 1rem 1rem;
display: flex;
align-items: center;
}
.logo {
margin-right: 1rem;
width: 5rem;
}
@media only screen and (max-width: 600px) {
.logoContainer {
display: none;
}
}
.header a {
color: #eeeeee;
text-decoration: none;
}
.chaos {
font-weight: bold;
}
.nav {
background-color: #14284c;
}
.navContent {
margin: 0 auto;
max-width: 1000px;
display: flex;
flex-flow: row wrap;
}
a.navItem,
a.navItem:visited {
padding: 1rem;
color: white;
font-weight: 900;
text-transform: uppercase;
text-decoration: none;
}
a.navItem:hover {
text-decoration: solid underline white 0.1em;
}
a.navItem.navItemActive {
text-decoration: solid underline white 0.2em;
}
@media only screen and (max-width: 600px) {
a.navItem.desktopOnly {
display: none;
}
}