Add media queries for larger screens.

It is hard for people to keep track of very wide pages (and
sentences), with these mediaqueries the width of the site is limited on
screens that are wider than a 1000, or 1400 pixels.
pull/1/head
supakeen 2 years ago
parent 9e680d0882
commit 0c6ba5e1e4

@ -91,3 +91,23 @@ footer {
.linkSpacer {
margin: 0 .5em;
}
@media only screen and (max-width: 1000px) {
body {
width: 100%;
padding: 0 1rem;
}
}
@media only screen and (min-width: 1000px) {
body {
width: 80%;
}
}
@media only screen and (min-width: 1400px) {
body {
width: 60rem;
}
}

@ -96,3 +96,23 @@ footer {
.linkSpacer {
margin: 0 .5em;
}
@media only screen and (max-width: 1000px) {
body {
width: 100%;
padding: 0 1rem;
}
}
@media only screen and (min-width: 1000px) {
body {
width: 80%;
}
}
@media only screen and (min-width: 1400px) {
body {
width: 60rem;
}
}

Loading…
Cancel
Save