summaryrefslogtreecommitdiff
path: root/index.css
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-06-22 21:21:18 -0400
committermattkae <mattkae@protonmail.com>2022-06-22 21:21:18 -0400
commit58b492c7fbb60a4283e5961fc24436405f577165 (patch)
treeb0058a640de306c2606179975de66d6f6b999f96 /index.css
parent799e8660641920b5adc1c1aa8a36f9dd72722047 (diff)
Nice mobile version of the site
Diffstat (limited to 'index.css')
-rw-r--r--index.css18
1 files changed, 13 insertions, 5 deletions
diff --git a/index.css b/index.css
index 41e4fab..0c2e614 100644
--- a/index.css
+++ b/index.css
@@ -1,7 +1,7 @@
body {
width: 60vw;
height: 100vh;
- font-family: Arial, Helvetica, sans-serif;
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
background-color: transparent;
color: black;
@@ -250,8 +250,8 @@ input:focus {
}
/* Phone screen adjustments */
-@media only screen and (device-width: 1280px),
-only screen and (max-width:1280px) {
+@media only screen and (device-width: 1440px),
+only screen and (max-width:1440px) {
header > h1 {
font-size: 1.5rem;
}
@@ -259,12 +259,20 @@ only screen and (max-width:1280px) {
body {
width: 90vw !important;
}
-
+}
+
+@media only screen and (device-width: 960px),
+only screen and (max-width:960px) {
#theme_selector {
padding-bottom: 2rem !important;
}
.carousel_image_expanded_container > .carousel_image {
- width: 100vw;
+ width: 80vw;
+ }
+
+ #carousel > button {
+ font-size: 6rem;
+ top: calc(50% - 3rem);
}
}