From 2983a2fe5269ad200d001fc086f330df391c377c Mon Sep 17 00:00:00 2001 From: Sophie Axebane Date: Tue, 7 Nov 2023 16:43:30 -0600 Subject: [PATCH] Fix issues on mobile --- memories.html | 14 +++++++------- styles/style_main.css | 11 ++++++++++- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/memories.html b/memories.html index 8b9fe7e..cc4f5bd 100644 --- a/memories.html +++ b/memories.html @@ -7,6 +7,9 @@ + + + @@ -21,13 +24,10 @@

Thank you for the memories.

-
-
-

memories.exe

- - - -
+

memories.exe

+
+ +
diff --git a/styles/style_main.css b/styles/style_main.css index 68c7904..12f0493 100644 --- a/styles/style_main.css +++ b/styles/style_main.css @@ -22,7 +22,7 @@ body { img.art_display { /* ackshually nvm, there's not much art at all so i'm not gonna make the gallery thing */ - width: 50%; + width: 45%; align-self: center; padding-top: 5vh; padding-bottom: 5vh; @@ -99,3 +99,12 @@ p { font-family: 'Bitter', serif; font-weight: 450; } + +/* mobile :( */ + +@media (max-width: 900px) { + + img.art_display { + width: 80vw; + } +}