homepage/src/components/nav.module.css

66 lines
926 B
CSS
Raw Normal View History

2019-12-11 21:34:32 +00:00
.header {
2019-12-12 00:49:00 +00:00
background-color: #0e1e38;
2019-12-11 21:34:32 +00:00
}
.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;
2019-12-11 21:34:32 +00:00
}
.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 {
2019-12-11 21:34:32 +00:00
padding: 1rem;
color: white;
font-weight: 900;
text-transform: uppercase;
text-decoration: none;
}
2020-02-18 20:37:42 +00:00
a.navItem:hover {
2019-12-11 21:34:32 +00:00
text-decoration: solid underline white 0.1em;
}
2020-02-18 20:37:42 +00:00
a.navItem.navItemActive {
text-decoration: solid underline white 0.2em;
}
@media only screen and (max-width: 600px) {
a.navItem.desktopOnly {
display: none;
}
}