From 4c17b0af9e0007c4a1816c09ad2220d811122cd9 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Mon, 3 Feb 2025 19:53:12 +0100 Subject: [PATCH 1/4] style.css: remove unused css --- stylesheets/style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index 78bc7635..e509ffa8 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -429,7 +429,6 @@ img.banner,img.board_image { .post-image { display: block; float: left; - margin: 5px 20px 10px 20px; border: none; } From 9ff71351a4ffd2e942a53421170287f8f58d84b9 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Mon, 3 Feb 2025 20:00:51 +0100 Subject: [PATCH 2/4] style.css: move margin from body to head --- stylesheets/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index e509ffa8..7a744e10 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -538,7 +538,7 @@ div.post { } div.post div.head { - margin: 0.1em 1em 0.1em 1.4em; + margin: 0.1em 1em 0.8em 1.4em; clear: both; line-height: 1.3em; } @@ -563,7 +563,6 @@ div.post.op > p { } div.post div.body { - margin-top: 0.8em; margin-left: 1.4em; padding-right: 3em; padding-bottom: 0.3em; From a4e4074f81b3325bed0db8ab7884c9fb03adbaf2 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Mon, 3 Feb 2025 20:01:49 +0100 Subject: [PATCH 3/4] style.css: add margin at bottom of single images --- stylesheets/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index 7a744e10..7c4ae91c 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -440,7 +440,7 @@ img.banner,img.board_image { } div.post .post-image { - padding: 0.2em; + padding: 0.2em 0.2em 0.8em 0.2em; margin: 0 20px 0 0; } From 45959559cf206d329cc39a9192f9219268fb9163 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Mon, 3 Feb 2025 20:04:00 +0100 Subject: [PATCH 4/4] style.css: fix full-image padding --- stylesheets/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index 7c4ae91c..ba7d76f1 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -434,7 +434,7 @@ img.banner,img.board_image { .full-image { float: left; - padding: 5px; + padding: 0.2em 0.2em 0.8em 0.2em; margin: 0 20px 0 0; max-width: 98%; }