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/scaffolding.html | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index a78b1b5b4..d734ea5ae 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -413,14 +413,16 @@ - Phones - 480px and below - Fluid columns, no fixed widths + Large display + 1200px and up + 70px + 30px - Phones to tablets - 767px and below - Fluid columns, no fixed widths + Default + 980px and up + 60px + 20px Portrait tablets @@ -429,31 +431,29 @@ 20px - Default - 980px and up - 60px - 20px + Phones to tablets + 767px and below + Fluid columns, no fixed widths - Large display - 1200px and up - 70px - 30px + Phones + 480px and below + Fluid columns, no fixed widths
-/* Landscape phones and down */
-@media (max-width: 480px) { ... }
-
-/* Landscape phone to portrait tablet */
-@media (max-width: 767px) { ... }
+/* Large desktop */
+@media (min-width: 1200px) { ... }
 
 /* Portrait tablet to landscape and desktop */
 @media (min-width: 768px) and (max-width: 979px) { ... }
 
-/* Large desktop */
-@media (min-width: 1200px) { ... }
+/* Landscape phone to portrait tablet */
+@media (max-width: 767px) { ... }
+
+/* Landscape phones and down */
+@media (max-width: 480px) { ... }
 
-- cgit v1.2.3 From 7e4629fbbec63bda9986023dd29879d2565e570e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 4 Sep 2012 14:27:48 -0700 Subject: fixes #4968 manually: typo in scaffolding docs about offset classes --- docs/scaffolding.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index d734ea5ae..75cb761d5 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -176,7 +176,7 @@

Given this example, we have .span4 and .span8, making for 12 total columns and a complete row.

Offsetting columns

-

Move columns to the left using .offset* classes. Each class increases the left margin of a column by a whole column. For example, .offset4 moves .span4 over four columns.

+

Move columns to the right using .offset* classes. Each class increases the left margin of a column by a whole column. For example, .offset4 moves .span4 over four columns.

4
-- cgit v1.2.3 From 138b5a8c0569e548ec93803aaa88ea7033363680 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Wed, 5 Sep 2012 23:07:52 -0300 Subject: Fix small documentatio typos. --- docs/scaffolding.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/scaffolding.html') diff --git a/docs/scaffolding.html b/docs/scaffolding.html index 75cb761d5..4b23eed88 100644 --- a/docs/scaffolding.html +++ b/docs/scaffolding.html @@ -201,7 +201,7 @@

To nest your content with the default grid, add a new .row and set of .span* columns within an existing .span* column. Nested rows should include a set of columns that add up to the number of columns of its parent.

- Level 1 of column + Level 1 column
Level 2 @@ -318,10 +318,10 @@
 <div class="row-fluid">
   <div class="span12">
-    Level 1 of column
+    Fluid 12
     <div class="row-fluid">
-      <div class="span6">Level 2</div>
-      <div class="span6">Level 2</div>
+      <div class="span6">Fluid 6</div>
+      <div class="span6">Fluid 6</div>
     </div>
   </div>
 </div>
-- 
cgit v1.2.3