浏览代码

Made images smaller on small screens.

Daniel Buckmaster 11 年之前
父节点
当前提交
7fa24f5dd4
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      css/main.css

+ 7 - 1
css/main.css

@@ -178,13 +178,19 @@ a.media-subheading:hover {
   display: inline-block;
   display: inline-block;
 }
 }
 
 
-img.history,
 img.feature,
 img.feature,
 img.made-with-torque {
 img.made-with-torque {
   width: 128px;
   width: 128px;
   border-radius: 3px;
   border-radius: 3px;
 }
 }
 
 
+@media (max-width: 360px) {
+  img.feature,
+  img.made-with-torque {
+    width: 96px;
+  }
+}
+
 img.history {
 img.history {
   margin: 1em;
   margin: 1em;
 }
 }