From 7fa24f5dd48c4fbb0ac8f146dff8b9eb001ae50f Mon Sep 17 00:00:00 2001 From: Daniel Buckmaster Date: Fri, 18 Apr 2014 13:51:39 +1000 Subject: [PATCH] Made images smaller on small screens. --- css/main.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index 77a0e040b..be95cb0a5 100644 --- a/css/main.css +++ b/css/main.css @@ -178,13 +178,19 @@ a.media-subheading:hover { display: inline-block; } -img.history, img.feature, img.made-with-torque { width: 128px; border-radius: 3px; } +@media (max-width: 360px) { + img.feature, + img.made-with-torque { + width: 96px; + } +} + img.history { margin: 1em; }