Forráskód Böngészése

Made images smaller on small screens.

Daniel Buckmaster 11 éve
szülő
commit
7fa24f5dd4
1 módosított fájl, 7 hozzáadás és 1 törlés
  1. 7 1
      css/main.css

+ 7 - 1
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;
 }