From 00fb0750eaea0c3bfe0ab59798241be7db868a38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crist=C3=B3bal=20Arroyo?= Date: Mon, 6 Jan 2025 10:09:46 -0500 Subject: [PATCH] Constraint image sizes (#17) Signed-off-by: Crola1702 --- content/stylesheet.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/content/stylesheet.css b/content/stylesheet.css index 3769ca3a743..5411c182b4a 100644 --- a/content/stylesheet.css +++ b/content/stylesheet.css @@ -73,3 +73,10 @@ header.site { border-style: solid; border-width: 1px; } + +#main img { + display: block; + margin: auto; + max-width: min(500px, 90%); + padding: max(1%, 10px); +}