aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-10-17 23:45:35 -0700
committerMark Otto <[email protected]>2011-10-17 23:45:35 -0700
commit369b9720c6090985c678076eebb59c080c0ed27c (patch)
tree1aa41ff88d7df47dca598d98bef68efeb4f5aa0e /docs
parentae5c5e10635049c65d73454ca9486539bdf324d4 (diff)
downloadbootstrap-369b9720c6090985c678076eebb59c080c0ed27c.tar.xz
bootstrap-369b9720c6090985c678076eebb59c080c0ed27c.zip
adding responsive stuff to docs to stub that out, updated type to make ul and ol margins match p tags
Diffstat (limited to 'docs')
-rw-r--r--docs/assets/css/docs.css17
-rw-r--r--docs/assets/img/responsive-illustrations.pngbin0 -> 2249 bytes
-rw-r--r--docs/index.html80
3 files changed, 96 insertions, 1 deletions
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index bbf71ab77..2d0b87fe2 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -309,7 +309,7 @@ pre.prettyprint {
/* Make tables spaced out a bit more */
h2 + table {
- margin-top: 10px;
+ margin-top: 5px;
}
/* Responsive Docs
@@ -347,3 +347,18 @@ h2 + table {
}
}
+
+
+.supported-devices {
+ margin-bottom: 9px;
+ color: #777;
+}
+.supported-devices strong {
+ display: block;
+ font-size: 14px;
+ line-height: 18px;
+}
+.supported-devices small {
+ font-size: 12px;
+}
+
diff --git a/docs/assets/img/responsive-illustrations.png b/docs/assets/img/responsive-illustrations.png
new file mode 100644
index 000000000..c980da77a
--- /dev/null
+++ b/docs/assets/img/responsive-illustrations.png
Binary files differ
diff --git a/docs/index.html b/docs/index.html
index 7fe5ce1ca..aafea7662 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -399,6 +399,86 @@
+
+<!-- Responsive design
+================================================== -->
+<section id="responsive">
+ <div class="page-header">
+ <h1>Responsive design <small>Media queries for various devices and resolutions</small></h1>
+ </div>
+ <!-- Supported devices -->
+ <div class="row">
+ <div class="span4">
+ <img src="assets/img/responsive-illustrations.png" alt="Responsive devices">
+ </div>
+ <div class="span8">
+ <h2>Supported devices</h2>
+ <table class="supported-devices">
+ <tbody>
+ <tr>
+ <td>
+ <strong>Under 480px</strong>
+ <small>Smartphones</small>
+ </td>
+ <td>
+ <strong>480px to 768px</strong>
+ <small>Portrait tablet</small>
+ </td>
+ <td>
+ <strong>768px to 940px</strong>
+ <small>Landscape tablet</small>
+ </td>
+ <td>
+ <strong>940px and up</strong>
+ <small>Default</small>
+ </td>
+ <td>
+ <strong>1170px and up</strong>
+ <small>Large screens</small>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <p>With these media queries, Bootstrap provides developers with the core tools necessary to develop responsively on the web for the world's most common devices and resolutions.</p>
+ </div>
+ </div>
+
+ <br>
+
+ <!-- Media query code -->
+ <h2>Using the media queries</h2>
+ <div class="row">
+ <div class="span4">
+ <p>Bootstrap doesn't automatically include these media queries, but understanding and adding them is very easy and requires minimal setup. You have a few options for including the responsive features of Bootstrap:</p>
+ <ol>
+ <li>Use the compiled responsive version, bootstrap.reponsive.css</li>
+ <li>Add @import "responsive.less" and recompile Bootstrap</li>
+ <li>Compile responsive.less as a separate file and include that</li>
+ </ol>
+ <p><strong>Why not just include it?</strong> Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.</p>
+ </div>
+ <div class="span8">
+<pre class="prettyprint linenums">
+ // Landscape phones and down
+ @media (max-width: 480px) { ... }
+
+ // Landscape phone to portrait tablet
+ @media (min-width: 480px) and (max-width: 768px) { ... }
+
+ // Portrait tablet to landscape and desktop
+ @media (min-width: 768px) and (max-width: 940px) { ... }
+
+ // Large desktop
+ @media (min-width: 1210px) { .. }
+</pre>
+ </div>
+ </div>
+
+</section>
+
+
+
+
<!-- Typography
================================================== -->
<section id="typography">