From 6afaf57d5fef1a18a37c00acd731d9b8da2b592c Mon Sep 17 00:00:00 2001 From: Adam Sampson Date: Sat, 23 Aug 2014 13:58:42 +0100 Subject: [PATCH] Add a rule to style.css to scale down large images. --- NEWS | 2 ++ style.css | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/NEWS b/NEWS index f2021d1..870215e 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,8 @@ Add a test for the maxage option (suggested by joelmo). +Add a rule to style.css to scale down large images. + - rawdog 2.19 Make test-rawdog not depend on having a host it can test connection diff --git a/style.css b/style.css index 977f1e0..2e5ba09 100644 --- a/style.css +++ b/style.css @@ -12,6 +12,11 @@ text-decoration: none; margin: 0; } +/* Scale down large images in feeds */ +img { + max-width: 100%; + height: auto; +} html { margin: 0; padding: 0; -- 2.35.1