From 00d6f26270485cde0fb8474b76396eb81cd97eff Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 31 Aug 2012 23:12:02 -0700 Subject: fixes #4896: reflect media query order in docs --- docs/templates/pages/scaffolding.mustache | 42 +++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'docs/templates/pages') diff --git a/docs/templates/pages/scaffolding.mustache b/docs/templates/pages/scaffolding.mustache index 3fb7841b13..f32581faa0 100644 --- a/docs/templates/pages/scaffolding.mustache +++ b/docs/templates/pages/scaffolding.mustache @@ -345,14 +345,16 @@ - {{_i}}Phones{{/i}} - 480px and below - {{_i}}Fluid columns, no fixed widths{{/i}} + {{_i}}Large display{{/i}} + 1200px and up + 70px + 30px - {{_i}}Phones to tablets{{/i}} - 767px and below - {{_i}}Fluid columns, no fixed widths{{/i}} + {{_i}}Default{{/i}} + 980px and up + 60px + 20px {{_i}}Portrait tablets{{/i}} @@ -361,31 +363,29 @@ 20px - {{_i}}Default{{/i}} - 980px and up - 60px - 20px + {{_i}}Phones to tablets{{/i}} + 767px and below + {{_i}}Fluid columns, no fixed widths{{/i}} - {{_i}}Large display{{/i}} - 1200px and up - 70px - 30px + {{_i}}Phones{{/i}} + 480px and below + {{_i}}Fluid columns, no fixed widths{{/i}}
-/* {{_i}}Landscape phones and down{{/i}} */
-@media (max-width: 480px) { ... }
-
-/* {{_i}}Landscape phone to portrait tablet{{/i}} */
-@media (max-width: 767px) { ... }
+/* {{_i}}Large desktop{{/i}} */
+@media (min-width: 1200px) { ... }
 
 /* {{_i}}Portrait tablet to landscape and desktop{{/i}} */
 @media (min-width: 768px) and (max-width: 979px) { ... }
 
-/* {{_i}}Large desktop{{/i}} */
-@media (min-width: 1200px) { ... }
+/* {{_i}}Landscape phone to portrait tablet{{/i}} */
+@media (max-width: 767px) { ... }
+
+/* {{_i}}Landscape phones and down{{/i}} */
+@media (max-width: 480px) { ... }
 
-- cgit v1.2.3