summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2021-03-21 15:10:14 -0400
committerHolden Rohrer <hr@hrhr.dev>2021-03-21 15:10:14 -0400
commit13a615ab0826294bb25a4dd5eb2c5349f5314a0f (patch)
tree34f66dc8caa478fdb209a291efad0c69a87ccf90
parent52df7894da483ff33b56a63a9196c59a70d27aaf (diff)
made margin jump from 0 to 50pxHEADmaster
-rw-r--r--src/index.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/index.css b/src/index.css
index c0b25bd..bb14e05 100644
--- a/src/index.css
+++ b/src/index.css
@@ -47,11 +47,15 @@ body {
min-height: calc(var(--vh, 1vh) * 100); /* fix for mobile Safari disobedience of web standards, with JS */
margin: 0 auto;
line-height: 0px;
- max-width: 1000px;
display: flex;
flex-direction: column;
font-family: 'Glacial', sans-serif;
}
+@media (width > 1100px) {
+ body {
+ max-width: 1000px;
+ }
+}
body > div {
flex: 1;