You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
930 B
CSS

5 years ago
html, body {
margin: 0px;
padding: 0px;
min-height: 100vh;
min-width: 100vw;
display: flex;
flex-direction: column;
flex-grow: 1;
font-family: 'Open Sans', sans-serif;
align-items: stretch;
}
.nav-container, main, footer {
max-width: 1080px;
width: 70%;
margin: 0px auto;
display: block;
}
.nav-container {
display: flex;
flex-direction: row;
}
nav {
border-bottom: 1px solid #ddd;
background: rgba(0,0,0,.08);
padding: 32px 0;
}
.mumble-logo {
background-size: contain;
height: 113px;
margin-right: 32px;
}
main {
margin: 16px auto;
flex-grow: 1;
}
.italic {
font-style: italic;
}
@media(max-width: 600px) {
nav, main, footer {
width: calc(100vw - 16px);
}
.nav-container {
flex-direction: column;
align-items: center;
}
5 years ago
}
h1 {
font-weight: 400;
}
h2, h3 {
font-weight: 300;
}