41 lines
422 B
CSS
41 lines
422 B
CSS
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
@media (max-width: 760px) {
|
|
html {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 760px) {
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
body {
|
|
max-width: 760px;
|
|
margin: auto;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
h1 {
|
|
padding-bottom: 3rem;
|
|
padding-top: 3rem;
|
|
font-size: 3rem;
|
|
}
|
|
|
|
#content-body {
|
|
width: 100%;
|
|
}
|
|
|
|
#login-button {
|
|
float: right;
|
|
}
|
|
|
|
#site-title {
|
|
margin-bottom: 20px;
|
|
}
|