about summary refs log tree commit diff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css20
1 files changed, 14 insertions, 6 deletions
diff --git a/style.css b/style.css
index 9dc80d8..43ae13d 100644
--- a/style.css
+++ b/style.css
@@ -1,11 +1,16 @@
-
 body {
   margin: 0;
-  padding: 0;
+  padding: 6ex 16vw;
+  box-sizing: border-box;
   width: 100%;
   height: 100vh;
   font-family: sans-serif;
 }
+h1, h3 {
+  width: 58vw;
+  margin: auto;
+}
+h3 { font-weight: 400; }
 
 footer {
   text-align: center;
@@ -13,7 +18,7 @@ footer {
 }
 
 .tiles {
-  padding: 6vh 16vw;
+  padding: 6ex 0;
   display: flex;
   flex-wrap: wrap;
   flex-direction: row;
@@ -21,7 +26,7 @@ footer {
   position: relative;
 }
 .tile {
-  margin: 15px;
+  margin: 1vw;
   cursor: pointer;
   overflow: hidden;
   min-width: 120px;
@@ -42,8 +47,11 @@ footer {
 }
 
 @media only screen and (max-width: 442px) {
-  .tiles {
-    padding: 6vh 4vw;
+  body {
+    padding: 6ex 4vw;
+  }
+  h1, h3 {
+    width: 100%;
   }
 
   .tile {