From: Adam Sampson Date: Sat, 23 Aug 2014 12:58:42 +0000 (+0100) Subject: Add a rule to style.css to scale down large images. X-Git-Tag: v2.20~3 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=6afaf57d5fef1a18a37c00acd731d9b8da2b592c;p=rawdog%2F.git Add a rule to style.css to scale down large images. --- 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;