summary refs log tree commit diff
path: root/public
diff options
context:
space:
mode:
authorpdp8 <pdp8@pdp8.info>2023-06-04 12:02:00 +0200
committerpdp8 <pdp8@pdp8.info>2023-06-04 12:02:00 +0200
commit1b51ff391d98dc5ed297b9162fa0e3078840cdc0 (patch)
tree79d4cca390ecd21327605a93ac45c5a2acd5cbce /public
parent74378829ebe3da4d339bdff37a00675bfc12118f (diff)
css for phone and laptop
Diffstat (limited to 'public')
-rw-r--r--public/style.css27
1 files changed, 25 insertions, 2 deletions
diff --git a/public/style.css b/public/style.css
index 3e3b1e2..73528ed 100644
--- a/public/style.css
+++ b/public/style.css
@@ -1,8 +1,9 @@
 body {
   font-family: sans-serif;
-  font-size: 2em;
+  font-size: 3vmin;
 }
 
+
 img,
 video {
   max-width: 100%;
@@ -13,7 +14,7 @@ video {
 }
 
 form {
-  display: inline-block;
+  display: inline;
 }
 
 button {
@@ -22,4 +23,26 @@ button {
 
 a {
   color: #888;
+}
+
+@media (orientation: landscape) {
+  button {
+    font-size: 1em;
+  }
+}
+
+@media (min-width: 1500px) {
+  body {
+    font-size: 1.25em;
+  }
+}
+
+@media (orientation: portrait) and (min-width: 1000px) {
+  body {
+    font-size: 1.25em;
+  }
+
+  button {
+    font-size: 1em;
+  }
 }
\ No newline at end of file