From ec5f9714718ccc79bc1dd15dadb8a7eddb5c154e Mon Sep 17 00:00:00 2001 From: signal9 Date: Thu, 19 Jun 2025 14:35:40 -0600 Subject: [PATCH] Add limited media queries --- themes/vexingworkshop/static/css/main.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/themes/vexingworkshop/static/css/main.css b/themes/vexingworkshop/static/css/main.css index 411a078..a57881f 100644 --- a/themes/vexingworkshop/static/css/main.css +++ b/themes/vexingworkshop/static/css/main.css @@ -139,6 +139,24 @@ section#content img.banner { width: 700px; } +@media (max-width: 400px) { + article img.image { + width: 240px; + } + + article img.image-med { + width: 240px; + } + + article img.image-lg { + width: 240px; + } + + section#content img.banner { + width: 240px; + } +} + section#content article .entry-content { display: flex; flex-direction: column; -- 2.39.5