bootstrap-source/bootstrap-3.0.3/css.html
changeset 115 a9d04f5f5650
parent 54 0ded9d7748b7
equal deleted inserted replaced
114:6093dda9fe38 115:a9d04f5f5650
     1 ---
       
     2 layout: default
       
     3 title: CSS
       
     4 slug: css
       
     5 lead: "Global CSS settings, fundamental HTML elements styled and enhanced with extensible classes, and an advanced grid system."
       
     6 base_url: "../"
       
     7 ---
       
     8 
       
     9 
       
    10   <!-- Global Bootstrap settings
       
    11   ================================================== -->
       
    12   <div class="bs-docs-section">
       
    13     <div class="page-header">
       
    14       <h1 id="overview">Overview</h1>
       
    15     </div>
       
    16     <p class="lead">Get the lowdown on the key pieces of Bootstrap's infrastructure, including our approach to better, faster, stronger web development.</p>
       
    17 
       
    18     <h3 id="overview-doctype">HTML5 doctype</h3>
       
    19     <p>Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.</p>
       
    20 {% highlight html %}
       
    21 <!DOCTYPE html>
       
    22 <html lang="en">
       
    23   ...
       
    24 </html>
       
    25 {% endhighlight %}
       
    26 
       
    27     <h3 id="overview-mobile">Mobile first</h3>
       
    28     <p>With Bootstrap 2, we added optional mobile friendly styles for key aspects of the framework. With Bootstrap 3, we've rewritten the project to be mobile friendly from the start. Instead of adding on optional mobile styles, they're baked right into the core. In fact, <strong>Bootstrap is mobile first</strong>. Mobile first styles can be found throughout the entire library instead of in separate files.</p>
       
    29     <p>To ensure proper rendering and touch zooming, <strong>add the viewport meta tag</strong> to your <code>&lt;head&gt;</code>.</p>
       
    30 {% highlight html %}
       
    31 <meta name="viewport" content="width=device-width, initial-scale=1.0">
       
    32 {% endhighlight %}
       
    33     <p>You can disable zooming capabilities on mobile devices by adding <code>user-scalable=no</code> to the viewport meta tag. This disables zooming, meaning users are only able to scroll, and results in your site feeling a bit more like a native application. Overall we don't recommend this on every site, so use caution!</p>
       
    34 {% highlight html %}
       
    35 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
       
    36 {% endhighlight %}
       
    37 
       
    38     <h3 id="overview-responsive-images">Responsive images</h3>
       
    39     <p>Images in Bootstrap 3 can be made responsive-friendly via the addition of the <code>.img-responsive</code> class. This applies <code>max-width: 100%;</code> and <code>height: auto;</code> to the image so that it scales nicely to the parent element.</p>
       
    40 {% highlight html %}
       
    41 <img src="..." class="img-responsive" alt="Responsive image">
       
    42 {% endhighlight %}
       
    43 
       
    44     <h3 id="overview-type-links">Typography and links</h3>
       
    45     <p>Bootstrap sets basic global display, typography, and link styles. Specifically, we:</p>
       
    46     <ul>
       
    47       <li>Set <code>background-color: #fff;</code> on the <code>body</code></li>
       
    48       <li>Use the <code>@font-family-base</code>, <code>@font-size-base</code>, and <code>@line-height-base</code> attributes as our typographic base</li>
       
    49       <li>Set the global link color via <code>@link-color</code> and apply link underlines only on <code>:hover</code></li>
       
    50     </ul>
       
    51     <p>These styles can be found within <code>scaffolding.less</code>.</p>
       
    52 
       
    53     <h3 id="overview-normalize">Normalize</h3>
       
    54     <p>For improved cross-browser rendering, we use <a href="http://necolas.github.io/normalize.css/" target="_blank">Normalize</a>, a project by <a href="http://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="http://twitter.com/jon_neal" target="_blank">Jonathan Neal</a>.</p>
       
    55 
       
    56     <h3 id="overview-container">Containers</h3>
       
    57     <p>Easily center a page's contents by wrapping its contents in a <code>.container</code>. Containers set <code>width</code> at various media query breakpoints to match our grid system.</p>
       
    58     <p>Note that, due to <code>padding</code> and fixed widths, containers are not nestable by default.</p>
       
    59 {% highlight html %}
       
    60 <div class="container">
       
    61   ...
       
    62 </div>
       
    63 {% endhighlight %}
       
    64   </div>
       
    65 
       
    66 
       
    67 
       
    68   <!-- Grid system
       
    69   ================================================== -->
       
    70   <div class="bs-docs-section">
       
    71     <div class="page-header">
       
    72       <h1 id="grid">Grid system</h1>
       
    73     </div>
       
    74     <p class="lead">Bootstrap includes a responsive, mobile first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases. It includes <a href="#grid-example-basic">predefined classes</a> for easy layout options, as well as powerful <a href="#grid-less">mixins for generating more semantic layouts</a>.</p>
       
    75 
       
    76     <h3 id="grid-intro">Introduction</h3>
       
    77     <p>Grid systems are used for creating page layouts through a series of rows and columns that house your content. Here's how the Bootstrap grid system works:</p>
       
    78     <ul>
       
    79       <li>Rows must be placed within a <code>.container</code> for proper alignment and padding.</li>
       
    80       <li>Use rows to create horizontal groups of columns.</li>
       
    81       <li>Content should be placed within columns, and only columns may be immediate children of rows.</li>
       
    82       <li>Predefined grid classes like <code>.row</code> and <code>.col-xs-4</code> are available for quickly making grid layouts. LESS mixins can also be used for more semantic layouts.</li>
       
    83       <li>Columns create gutters (gaps between column content) via <code>padding</code>. That padding is offset in rows for the first and last column via negative margin on <code>.row</code>s.</li>
       
    84       <li>Grid columns are created by specifying the number of twelve available columns you wish to span. For example, three equal columns would use three <code>.col-xs-4</code>.</li>
       
    85     </ul>
       
    86     <p>Look to the examples for applying these principles to your code.</p>
       
    87 
       
    88     <div class="bs-callout bs-callout-info">
       
    89       <h4>Grids and full-width layouts</h4>
       
    90       <p>Folks looking to create fully fluid layouts (meaning your site stretches the entire width of the viewport) must wrap their grid content in a containing element with <code>padding: 0 15px;</code> to offset the <code>margin: 0 -15px;</code> used on <code>.row</code>s.</p>
       
    91     </div>
       
    92 
       
    93     <h3 id="grid-media-queries">Media queries</h3>
       
    94     <p>We use the following media queries in our LESS files to create the key breakpoints in our grid system.</p>
       
    95 {% highlight css %}
       
    96 /* Extra small devices (phones, less than 768px) */
       
    97 /* No media query since this is the default in Bootstrap */
       
    98 
       
    99 /* Small devices (tablets, 768px and up) */
       
   100 @media (min-width: @screen-sm-min) { ... }
       
   101 
       
   102 /* Medium devices (desktops, 992px and up) */
       
   103 @media (min-width: @screen-md-min) { ... }
       
   104 
       
   105 /* Large devices (large desktops, 1200px and up) */
       
   106 @media (min-width: @screen-lg-min) { ... }
       
   107 {% endhighlight %}
       
   108     <p>We occasionally expand on these media queries to include a <code>max-width</code> to limit CSS to a narrower set of devices.</p>
       
   109 {% highlight css %}
       
   110 @media (max-width: @screen-xs-max) { ... }
       
   111 @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { ... }
       
   112 @media (min-width: @screen-md-min) and (max-width: @screen-md-max) { ... }
       
   113 @media (min-width: @screen-lg-min) { ... }
       
   114 {% endhighlight %}
       
   115 
       
   116     <h3 id="grid-options">Grid options</h3>
       
   117     <p>See how aspects of the Bootstrap grid system work across multiple devices with a handy table.</p>
       
   118     <div class="table-responsive">
       
   119       <table class="table table-bordered table-striped">
       
   120         <thead>
       
   121           <tr>
       
   122             <th></th>
       
   123             <th>
       
   124               Extra small devices
       
   125               <small>Phones (&lt;768px)</small>
       
   126             </th>
       
   127             <th>
       
   128               Small devices
       
   129               <small>Tablets (&ge;768px)</small>
       
   130             </th>
       
   131             <th>
       
   132               Medium devices
       
   133               <small>Desktops (&ge;992px)</small>
       
   134             </th>
       
   135             <th>
       
   136               Large devices
       
   137               <small>Desktops (&ge;1200px)</small>
       
   138             </th>
       
   139           </tr>
       
   140         </thead>
       
   141         <tbody>
       
   142           <tr>
       
   143             <th>Grid behavior</th>
       
   144             <td>Horizontal at all times</td>
       
   145             <td colspan="3">Collapsed to start, horizontal above breakpoints</td>
       
   146           </tr>
       
   147           <tr>
       
   148             <th>Max container width</th>
       
   149             <td>None (auto)</td>
       
   150             <td>750px</td>
       
   151             <td>970px</td>
       
   152             <td>1170px</td>
       
   153           </tr>
       
   154           <tr>
       
   155             <th>Class prefix</th>
       
   156             <td><code>.col-xs-</code></td>
       
   157             <td><code>.col-sm-</code></td>
       
   158             <td><code>.col-md-</code></td>
       
   159             <td><code>.col-lg-</code></td>
       
   160           </tr>
       
   161           <tr>
       
   162             <th># of columns</th>
       
   163             <td colspan="4">12</td>
       
   164           </tr>
       
   165           <tr>
       
   166             <th>Max column width</th>
       
   167             <td class="text-muted">Auto</td>
       
   168             <td>60px</td>
       
   169             <td>78px</td>
       
   170             <td>95px</td>
       
   171           </tr>
       
   172           <tr>
       
   173             <th>Gutter width</th>
       
   174             <td colspan="4">30px (15px on each side of a column)</td>
       
   175           </tr>
       
   176           <tr>
       
   177             <th>Nestable</th>
       
   178             <td colspan="4">Yes</td>
       
   179           </tr>
       
   180           <tr>
       
   181             <th>Offsets</th>
       
   182             <td colspan="4">Yes</td>
       
   183           </tr>
       
   184           <tr>
       
   185             <th>Column ordering</th>
       
   186             <td colspan="4">Yes</td>
       
   187           </tr>
       
   188         </tbody>
       
   189       </table>
       
   190     </div>
       
   191     <p>Grid classes apply to devices with screen widths greater than or equal to the breakpoint sizes, and override grid classes targeted at smaller devices. Therefore, applying any <code>.col-md-</code> class to an element will not only affect its styling on medium devices but also on large devices if a <code>.col-lg-</code> class is not present.</p>
       
   192 
       
   193     <h3 id="grid-example-basic">Example: Stacked-to-horizontal</h3>
       
   194     <p>Using a single set of <code>.col-md-*</code> grid classes, you can create a basic grid system that starts out stacked on mobile devices and tablet devices (the extra small to small range) before becoming horizontal on desktop (medium) devices. Place grid columns in any <code>.row</code>.</p>
       
   195     <div class="bs-docs-grid">
       
   196       <div class="row show-grid">
       
   197         <div class="col-md-1">.col-md-1</div>
       
   198         <div class="col-md-1">.col-md-1</div>
       
   199         <div class="col-md-1">.col-md-1</div>
       
   200         <div class="col-md-1">.col-md-1</div>
       
   201         <div class="col-md-1">.col-md-1</div>
       
   202         <div class="col-md-1">.col-md-1</div>
       
   203         <div class="col-md-1">.col-md-1</div>
       
   204         <div class="col-md-1">.col-md-1</div>
       
   205         <div class="col-md-1">.col-md-1</div>
       
   206         <div class="col-md-1">.col-md-1</div>
       
   207         <div class="col-md-1">.col-md-1</div>
       
   208         <div class="col-md-1">.col-md-1</div>
       
   209       </div>
       
   210       <div class="row show-grid">
       
   211         <div class="col-md-8">.col-md-8</div>
       
   212         <div class="col-md-4">.col-md-4</div>
       
   213       </div>
       
   214       <div class="row show-grid">
       
   215         <div class="col-md-4">.col-md-4</div>
       
   216         <div class="col-md-4">.col-md-4</div>
       
   217         <div class="col-md-4">.col-md-4</div>
       
   218       </div>
       
   219       <div class="row show-grid">
       
   220         <div class="col-md-6">.col-md-6</div>
       
   221         <div class="col-md-6">.col-md-6</div>
       
   222       </div>
       
   223     </div>
       
   224 {% highlight html %}
       
   225 <div class="row">
       
   226   <div class="col-md-1">.col-md-1</div>
       
   227   <div class="col-md-1">.col-md-1</div>
       
   228   <div class="col-md-1">.col-md-1</div>
       
   229   <div class="col-md-1">.col-md-1</div>
       
   230   <div class="col-md-1">.col-md-1</div>
       
   231   <div class="col-md-1">.col-md-1</div>
       
   232   <div class="col-md-1">.col-md-1</div>
       
   233   <div class="col-md-1">.col-md-1</div>
       
   234   <div class="col-md-1">.col-md-1</div>
       
   235   <div class="col-md-1">.col-md-1</div>
       
   236   <div class="col-md-1">.col-md-1</div>
       
   237   <div class="col-md-1">.col-md-1</div>
       
   238 </div>
       
   239 <div class="row">
       
   240   <div class="col-md-8">.col-md-8</div>
       
   241   <div class="col-md-4">.col-md-4</div>
       
   242 </div>
       
   243 <div class="row">
       
   244   <div class="col-md-4">.col-md-4</div>
       
   245   <div class="col-md-4">.col-md-4</div>
       
   246   <div class="col-md-4">.col-md-4</div>
       
   247 </div>
       
   248 <div class="row">
       
   249   <div class="col-md-6">.col-md-6</div>
       
   250   <div class="col-md-6">.col-md-6</div>
       
   251 </div>
       
   252 {% endhighlight %}
       
   253 
       
   254     <h3 id="grid-example-mixed">Example: Mobile and desktop</h3>
       
   255     <p>Don't want your columns to simply stack in smaller devices? Use the extra small and medium device grid classes by adding <code>.col-xs-*</code> <code>.col-md-*</code> to your columns. See the example below for a better idea of how it all works.</p>
       
   256     <div class="bs-docs-grid">
       
   257       <div class="row show-grid">
       
   258         <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
       
   259         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   260       </div>
       
   261       <div class="row show-grid">
       
   262         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   263         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   264         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   265       </div>
       
   266       <div class="row show-grid">
       
   267         <div class="col-xs-6">.col-xs-6</div>
       
   268         <div class="col-xs-6">.col-xs-6</div>
       
   269       </div>
       
   270     </div>
       
   271 {% highlight html %}
       
   272 <!-- Stack the columns on mobile by making one full-width and the other half-width -->
       
   273 <div class="row">
       
   274   <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div>
       
   275   <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   276 </div>
       
   277 
       
   278 <!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop -->
       
   279 <div class="row">
       
   280   <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   281   <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   282   <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   283 </div>
       
   284 
       
   285 <!-- Columns are always 50% wide, on mobile and desktop -->
       
   286 <div class="row">
       
   287   <div class="col-xs-6">.col-xs-6</div>
       
   288   <div class="col-xs-6">.col-xs-6</div>
       
   289 </div>
       
   290 {% endhighlight %}
       
   291 
       
   292     <h3 id="grid-example-mixed-complete">Example: Mobile, tablet, desktops</h3>
       
   293     <p>Build on the previous example by creating even more dynamic and powerful layouts with tablet <code>.col-sm-*</code> classes.</p>
       
   294     <div class="bs-docs-grid">
       
   295       <div class="row show-grid">
       
   296         <div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div>
       
   297         <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   298       </div>
       
   299       <div class="row show-grid">
       
   300         <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
       
   301         <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
       
   302         <!-- Optional: clear the XS cols if their content doesn't match in height -->
       
   303         <div class="clearfix visible-xs"></div>
       
   304         <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
       
   305       </div>
       
   306     </div>
       
   307 {% highlight html %}
       
   308 <div class="row">
       
   309   <div class="col-xs-12 col-sm-6 col-md-8">.col-xs-12 .col-sm-6 .col-md-8</div>
       
   310   <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div>
       
   311 </div>
       
   312 <div class="row">
       
   313   <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
       
   314   <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
       
   315   <!-- Optional: clear the XS cols if their content doesn't match in height -->
       
   316   <div class="clearfix visible-xs"></div>
       
   317   <div class="col-xs-6 col-sm-4">.col-xs-6 .col-sm-4</div>
       
   318 </div>
       
   319 {% endhighlight %}
       
   320 
       
   321     <h3 id="grid-responsive-resets">Responsive column resets</h3>
       
   322     <p>With the four tiers of grids available you're bound to run into issues where, at certain breakpoints, your columns don't clear quite right as one is taller than the other. To fix that, use a combination of a <code>.clearfix</code> and our <a href="#responsive-utilities">responsive utility classes</a>.</p>
       
   323 <div class="bs-docs-grid">
       
   324   <div class="row show-grid">
       
   325     <div class="col-xs-6 col-sm-3">
       
   326       .col-xs-6 .col-sm-3
       
   327       <br>
       
   328       Resize your viewport or check it out on your phone for an example.
       
   329     </div>
       
   330     <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
       
   331 
       
   332     <!-- Add the extra clearfix for only the required viewport -->
       
   333     <div class="clearfix visible-xs"></div>
       
   334 
       
   335     <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
       
   336     <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
       
   337   </div>
       
   338 </div>
       
   339 {% highlight html %}
       
   340 <div class="row">
       
   341   <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
       
   342   <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
       
   343 
       
   344   <!-- Add the extra clearfix for only the required viewport -->
       
   345   <div class="clearfix visible-xs"></div>
       
   346 
       
   347   <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
       
   348   <div class="col-xs-6 col-sm-3">.col-xs-6 .col-sm-3</div>
       
   349 </div>
       
   350 {% endhighlight %}
       
   351     <p>In addition to column clearing at responsive breakpoints, you may need to <strong>reset offsets, pushes, or pulls</strong>. Those resets are available for medium and large grid tiers only, since they start only at the (second) small grid tier. See this in action in <a href="../examples/grid/">the grid example</a>.</p>
       
   352 {% highlight html %}
       
   353 <div class="row">
       
   354   <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
       
   355   <div class="col-sm-5 col-sm-offset-2 col-md-6 col-md-offset-0">.col-sm-5 .col-sm-offset-2 .col-md-6 .col-md-offset-0</div>
       
   356 </div>
       
   357 
       
   358 <div class="row">
       
   359   <div class="col-sm-6 col-md-5 col-lg-6">.col-sm-6 .col-md-5 .col-lg-6</div>
       
   360   <div class="col-sm-6 col-md-5 col-md-offset-2 col-lg-6 col-lg-offset-0">.col-sm-6 .col-md-5 .col-md-offset-2 .col-lg-6 .col-lg-offset-0</div>
       
   361 </div>
       
   362 {% endhighlight %}
       
   363 
       
   364 
       
   365     <h3 id="grid-offsetting">Offsetting columns</h3>
       
   366     <p>Move columns to the right using <code>.col-md-offset-*</code> classes. These classes increase the left margin of a column by <code>*</code> columns. For example, <code>.col-md-offset-4</code> moves <code>.col-md-4</code> over four columns.</p>
       
   367     <div class="bs-docs-grid">
       
   368       <div class="row show-grid">
       
   369         <div class="col-md-4">.col-md-4</div>
       
   370         <div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div>
       
   371       </div>
       
   372       <div class="row show-grid">
       
   373         <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
       
   374         <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
       
   375       </div>
       
   376       <div class="row show-grid">
       
   377         <div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div>
       
   378       </div>
       
   379     </div>
       
   380 {% highlight html %}
       
   381 <div class="row">
       
   382   <div class="col-md-4">.col-md-4</div>
       
   383   <div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div>
       
   384 </div>
       
   385 <div class="row">
       
   386   <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
       
   387   <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
       
   388 </div>
       
   389 <div class="row">
       
   390   <div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div>
       
   391 </div>
       
   392 {% endhighlight %}
       
   393 
       
   394 
       
   395     <h3 id="grid-nesting">Nesting columns</h3>
       
   396     <p>To nest your content with the default grid, add a new <code>.row</code> and set of <code>.col-md-*</code> columns within an existing <code>.col-md-*</code> column. Nested rows should include a set of columns that add up to 12.</p>
       
   397     <div class="row show-grid">
       
   398       <div class="col-md-9">
       
   399         Level 1: .col-md-9
       
   400         <div class="row show-grid">
       
   401           <div class="col-md-6">
       
   402             Level 2: .col-md-6
       
   403           </div>
       
   404           <div class="col-md-6">
       
   405             Level 2: .col-md-6
       
   406           </div>
       
   407         </div>
       
   408       </div>
       
   409     </div>
       
   410 {% highlight html %}
       
   411 <div class="row">
       
   412   <div class="col-md-9">
       
   413     Level 1: .col-md-9
       
   414     <div class="row">
       
   415       <div class="col-md-6">
       
   416         Level 2: .col-md-6
       
   417       </div>
       
   418       <div class="col-md-6">
       
   419         Level 2: .col-md-6
       
   420       </div>
       
   421     </div>
       
   422   </div>
       
   423 </div>
       
   424 {% endhighlight %}
       
   425 
       
   426     <h3 id="grid-column-ordering">Column ordering</h3>
       
   427     <p>Easily change the order of our built-in grid columns with <code>.col-md-push-*</code> and <code>.col-md-pull-*</code> modifier classes.</p>
       
   428     <div class="row show-grid">
       
   429       <div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div>
       
   430       <div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div>
       
   431     </div>
       
   432 
       
   433 {% highlight html %}
       
   434 <div class="row">
       
   435   <div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div>
       
   436   <div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div>
       
   437 </div>
       
   438 {% endhighlight %}
       
   439 
       
   440     <h3 id="grid-less">LESS mixins and variables</h3>
       
   441     <p>In addition to <a href="#grid-example-basic">prebuilt grid classes</a> for fast layouts, Bootstrap includes LESS variables and mixins for quickly generating your own simple, semantic layouts.</p>
       
   442 
       
   443     <h4>Variables</h4>
       
   444     <p>Variables determine the number of columns, the gutter width, and the media query point at which to begin floating columns. We use these to generate the predefined grid classes documented above, as well as for the custom mixins listed below.</p>
       
   445 {% highlight css %}
       
   446 @grid-columns:              12;
       
   447 @grid-gutter-width:         30px;
       
   448 @grid-float-breakpoint:     768px;
       
   449 {% endhighlight %}
       
   450 
       
   451     <h4>Mixins</h4>
       
   452     <p>Mixins are used in conjunction with the grid variables to generate semantic CSS for individual grid columns.</p>
       
   453 {% highlight css %}
       
   454 // Creates a wrapper for a series of columns
       
   455 .make-row(@gutter: @grid-gutter-width) {
       
   456   // Then clear the floated columns
       
   457   .clearfix();
       
   458 
       
   459   @media (min-width: @screen-sm-min) {
       
   460     margin-left:  (@gutter / -2);
       
   461     margin-right: (@gutter / -2);
       
   462   }
       
   463 
       
   464   // Negative margin nested rows out to align the content of columns
       
   465   .row {
       
   466     margin-left:  (@gutter / -2);
       
   467     margin-right: (@gutter / -2);
       
   468   }
       
   469 }
       
   470 
       
   471 // Generate the extra small columns
       
   472 .make-xs-column(@columns; @gutter: @grid-gutter-width) {
       
   473   position: relative;
       
   474   // Prevent columns from collapsing when empty
       
   475   min-height: 1px;
       
   476   // Inner gutter via padding
       
   477   padding-left:  (@gutter / 2);
       
   478   padding-right: (@gutter / 2);
       
   479 
       
   480   // Calculate width based on number of columns available
       
   481   @media (min-width: @grid-float-breakpoint) {
       
   482     float: left;
       
   483     width: percentage((@columns / @grid-columns));
       
   484   }
       
   485 }
       
   486 
       
   487 // Generate the small columns
       
   488 .make-sm-column(@columns; @gutter: @grid-gutter-width) {
       
   489   position: relative;
       
   490   // Prevent columns from collapsing when empty
       
   491   min-height: 1px;
       
   492   // Inner gutter via padding
       
   493   padding-left:  (@gutter / 2);
       
   494   padding-right: (@gutter / 2);
       
   495 
       
   496   // Calculate width based on number of columns available
       
   497   @media (min-width: @screen-sm-min) {
       
   498     float: left;
       
   499     width: percentage((@columns / @grid-columns));
       
   500   }
       
   501 }
       
   502 
       
   503 // Generate the small column offsets
       
   504 .make-sm-column-offset(@columns) {
       
   505   @media (min-width: @screen-sm-min) {
       
   506     margin-left: percentage((@columns / @grid-columns));
       
   507   }
       
   508 }
       
   509 .make-sm-column-push(@columns) {
       
   510   @media (min-width: @screen-sm-min) {
       
   511     left: percentage((@columns / @grid-columns));
       
   512   }
       
   513 }
       
   514 .make-sm-column-pull(@columns) {
       
   515   @media (min-width: @screen-sm-min) {
       
   516     right: percentage((@columns / @grid-columns));
       
   517   }
       
   518 }
       
   519 
       
   520 // Generate the medium columns
       
   521 .make-md-column(@columns; @gutter: @grid-gutter-width) {
       
   522   position: relative;
       
   523   // Prevent columns from collapsing when empty
       
   524   min-height: 1px;
       
   525   // Inner gutter via padding
       
   526   padding-left:  (@gutter / 2);
       
   527   padding-right: (@gutter / 2);
       
   528 
       
   529   // Calculate width based on number of columns available
       
   530   @media (min-width: @screen-md-min) {
       
   531     float: left;
       
   532     width: percentage((@columns / @grid-columns));
       
   533   }
       
   534 }
       
   535 
       
   536 // Generate the medium column offsets
       
   537 .make-md-column-offset(@columns) {
       
   538   @media (min-width: @screen-md-min) {
       
   539     margin-left: percentage((@columns / @grid-columns));
       
   540   }
       
   541 }
       
   542 .make-md-column-push(@columns) {
       
   543   @media (min-width: @screen-md-min) {
       
   544     left: percentage((@columns / @grid-columns));
       
   545   }
       
   546 }
       
   547 .make-md-column-pull(@columns) {
       
   548   @media (min-width: @screen-md-min) {
       
   549     right: percentage((@columns / @grid-columns));
       
   550   }
       
   551 }
       
   552 
       
   553 // Generate the large columns
       
   554 .make-lg-column(@columns; @gutter: @grid-gutter-width) {
       
   555   position: relative;
       
   556   // Prevent columns from collapsing when empty
       
   557   min-height: 1px;
       
   558   // Inner gutter via padding
       
   559   padding-left:  (@gutter / 2);
       
   560   padding-right: (@gutter / 2);
       
   561 
       
   562   // Calculate width based on number of columns available
       
   563   @media (min-width: @screen-lg-min) {
       
   564     float: left;
       
   565     width: percentage((@columns / @grid-columns));
       
   566   }
       
   567 }
       
   568 
       
   569 // Generate the large column offsets
       
   570 .make-lg-column-offset(@columns) {
       
   571   @media (min-width: @screen-lg-min) {
       
   572     margin-left: percentage((@columns / @grid-columns));
       
   573   }
       
   574 }
       
   575 .make-lg-column-push(@columns) {
       
   576   @media (min-width: @screen-lg-min) {
       
   577     left: percentage((@columns / @grid-columns));
       
   578   }
       
   579 }
       
   580 .make-lg-column-pull(@columns) {
       
   581   @media (min-width: @screen-lg-min) {
       
   582     right: percentage((@columns / @grid-columns));
       
   583   }
       
   584 }
       
   585 {% endhighlight %}
       
   586 
       
   587     <h4>Example usage</h4>
       
   588     <p>You can modify the variables to your own custom values, or just use the mixins with their default values. Here's an example of using the default settings to create a two-column layout with a gap between.</p>
       
   589 {% highlight css %}
       
   590 .wrapper {
       
   591   .make-row();
       
   592 }
       
   593 .content-main {
       
   594   .make-lg-column(8);
       
   595 }
       
   596 .content-secondary {
       
   597   .make-lg-column(3);
       
   598   .make-lg-column-offset(1);
       
   599 }
       
   600 {% endhighlight %}
       
   601 {% highlight html %}
       
   602 <div class="wrapper">
       
   603   <div class="content-main">...</div>
       
   604   <div class="content-secondary">...</div>
       
   605 </div>
       
   606 {% endhighlight %}
       
   607 
       
   608   </div>
       
   609 
       
   610 
       
   611 
       
   612 
       
   613   <!-- Typography
       
   614   ================================================== -->
       
   615   <div class="bs-docs-section">
       
   616     <div class="page-header">
       
   617       <h1 id="type">Typography</h1>
       
   618     </div>
       
   619 
       
   620     <!-- Headings -->
       
   621     <h2 id="type-headings">Headings</h2>
       
   622     <p>All HTML headings, <code>&lt;h1&gt;</code> through <code>&lt;h6&gt;</code>, are available. <code>.h1</code> through <code>.h6</code> classes are also available, for when you want to match the font styling of a heading but still want your text to be displayed inline.</p>
       
   623     <div class="bs-example bs-example-type">
       
   624       <table class="table">
       
   625         <tbody>
       
   626           <tr>
       
   627             <td><h1>h1. Bootstrap heading</h1></td>
       
   628             <td class="info">Semibold 36px</td>
       
   629           </tr>
       
   630           <tr>
       
   631             <td><h2>h2. Bootstrap heading</h2></td>
       
   632             <td class="info">Semibold 30px</td>
       
   633           </tr>
       
   634           <tr>
       
   635             <td><h3>h3. Bootstrap heading</h3></td>
       
   636             <td class="info">Semibold 24px</td>
       
   637           </tr>
       
   638           <tr>
       
   639             <td><h4>h4. Bootstrap heading</h4></td>
       
   640             <td class="info">Semibold 18px</td>
       
   641           </tr>
       
   642           <tr>
       
   643             <td><h5>h5. Bootstrap heading</h5></td>
       
   644             <td class="info">Semibold 14px</td>
       
   645           </tr>
       
   646           <tr>
       
   647             <td><h6>h6. Bootstrap heading</h6></td>
       
   648             <td class="info">Semibold 12px</td>
       
   649           </tr>
       
   650         </tbody>
       
   651       </table>
       
   652     </div>
       
   653 {% highlight html %}
       
   654 <h1>h1. Bootstrap heading</h1>
       
   655 <h2>h2. Bootstrap heading</h2>
       
   656 <h3>h3. Bootstrap heading</h3>
       
   657 <h4>h4. Bootstrap heading</h4>
       
   658 <h5>h5. Bootstrap heading</h5>
       
   659 <h6>h6. Bootstrap heading</h6>
       
   660 {% endhighlight %}
       
   661 
       
   662     <p>Create lighter, secondary text in any heading with a generic <code>&lt;small&gt;</code> tag or the <code>.small</code> class.</p>
       
   663     <div class="bs-example bs-example-type">
       
   664       <table class="table">
       
   665         <tbody>
       
   666           <tr>
       
   667             <td><h1>h1. Bootstrap heading <small>Secondary text</small></h1></td>
       
   668           </tr>
       
   669           <tr>
       
   670             <td><h2>h2. Bootstrap heading <small>Secondary text</small></h2></td>
       
   671           </tr>
       
   672           <tr>
       
   673             <td><h3>h3. Bootstrap heading <small>Secondary text</small></h3></td>
       
   674           </tr>
       
   675           <tr>
       
   676             <td><h4>h4. Bootstrap heading <small>Secondary text</small></h4></td>
       
   677           </tr>
       
   678           <tr>
       
   679             <td><h5>h5. Bootstrap heading <small>Secondary text</small></h5></td>
       
   680           </tr>
       
   681           <tr>
       
   682             <td><h6>h6. Bootstrap heading <small>Secondary text</small></h6></td>
       
   683           </tr>
       
   684         </tbody>
       
   685       </table>
       
   686     </div>
       
   687 {% highlight html %}
       
   688 <h1>h1. Bootstrap heading <small>Secondary text</small></h1>
       
   689 <h2>h2. Bootstrap heading <small>Secondary text</small></h2>
       
   690 <h3>h3. Bootstrap heading <small>Secondary text</small></h3>
       
   691 <h4>h4. Bootstrap heading <small>Secondary text</small></h4>
       
   692 <h5>h5. Bootstrap heading <small>Secondary text</small></h5>
       
   693 <h6>h6. Bootstrap heading <small>Secondary text</small></h6>
       
   694 {% endhighlight %}
       
   695 
       
   696 
       
   697     <!-- Body copy -->
       
   698     <h2 id="type-body-copy">Body copy</h2>
       
   699     <p>Bootstrap's global default <code>font-size</code> is <strong>14px</strong>, with a <code>line-height</code> of <strong>1.428</strong>. This is applied to the <code>&lt;body&gt;</code> and all paragraphs. In addition, <code>&lt;p&gt;</code> (paragraphs) receive a bottom margin of half their computed line-height (10px by default).</p>
       
   700     <div class="bs-example">
       
   701       <p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
       
   702       <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.</p>
       
   703       <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
       
   704     </div>
       
   705 {% highlight html %}
       
   706 <p>...</p>
       
   707 {% endhighlight %}
       
   708 
       
   709     <!-- Body copy .lead -->
       
   710     <h3>Lead body copy</h3>
       
   711     <p>Make a paragraph stand out by adding <code>.lead</code>.</p>
       
   712     <div class="bs-example">
       
   713       <p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
       
   714     </div>
       
   715 {% highlight html %}
       
   716 <p class="lead">...</p>
       
   717 {% endhighlight %}
       
   718 
       
   719     <!-- Using LESS -->
       
   720     <h3>Built with Less</h3>
       
   721     <p>The typographic scale is based on two LESS variables in <strong>variables.less</strong>: <code>@font-size-base</code> and <code>@line-height-base</code>. The first is the base font-size used throughout and the second is the base line-height. We use those variables and some simple math to create the margins, paddings, and line-heights of all our type and more. Customize them and Bootstrap adapts.</p>
       
   722 
       
   723 
       
   724     <!-- Emphasis -->
       
   725     <h2 id="type-emphasis">Emphasis</h2>
       
   726     <p>Make use of HTML's default emphasis tags with lightweight styles.</p>
       
   727 
       
   728     <h3>Small text</h3>
       
   729     <p>For de-emphasizing inline or blocks of text, use the <code>&lt;small&gt;</code> tag to set text at 85% the size of the parent. Heading elements receive their own <code>font-size</code> for nested <code>&lt;small&gt;</code> elements.</p>
       
   730     <p>You may alternatively use an inline element with <code>.small</code> in place of any <code>&lt;small&gt;</code></p>
       
   731     <div class="bs-example">
       
   732       <p><small>This line of text is meant to be treated as fine print.</small></p>
       
   733     </div>
       
   734 {% highlight html %}
       
   735 <small>This line of text is meant to be treated as fine print.</small>
       
   736 {% endhighlight %}
       
   737 
       
   738 
       
   739     <h3>Bold</h3>
       
   740     <p>For emphasizing a snippet of text with a heavier font-weight.</p>
       
   741     <div class="bs-example">
       
   742       <p>The following snippet of text is <strong>rendered as bold text</strong>.</p>
       
   743     </div>
       
   744 {% highlight html %}
       
   745 <strong>rendered as bold text</strong>
       
   746 {% endhighlight %}
       
   747 
       
   748     <h3>Italics</h3>
       
   749     <p>For emphasizing a snippet of text with italics.</p>
       
   750     <div class="bs-example">
       
   751       <p>The following snippet of text is <em>rendered as italicized text</em>.</p>
       
   752     </div>
       
   753 {% highlight html %}
       
   754 <em>rendered as italicized text</em>
       
   755 {% endhighlight %}
       
   756 
       
   757     <div class="bs-callout bs-callout-info">
       
   758       <h4>Alternate elements</h4>
       
   759       <p>Feel free to use <code>&lt;b&gt;</code> and <code>&lt;i&gt;</code> in HTML5. <code>&lt;b&gt;</code> is meant to highlight words or phrases without conveying additional importance while <code>&lt;i&gt;</code> is mostly for voice, technical terms, etc.</p>
       
   760     </div>
       
   761 
       
   762     <h3>Alignment classes</h3>
       
   763     <p>Easily realign text to components with text alignment classes.</p>
       
   764     <div class="bs-example">
       
   765       <p class="text-left">Left aligned text.</p>
       
   766       <p class="text-center">Center aligned text.</p>
       
   767       <p class="text-right">Right aligned text.</p>
       
   768     </div>
       
   769 {% highlight html %}
       
   770 <p class="text-left">Left aligned text.</p>
       
   771 <p class="text-center">Center aligned text.</p>
       
   772 <p class="text-right">Right aligned text.</p>
       
   773 {% endhighlight %}
       
   774 
       
   775     <h3>Emphasis classes</h3>
       
   776     <p>Convey meaning through color with a handful of emphasis utility classes. These may also be applied to links and will darken on hover just like our default link styles.</p>
       
   777     <div class="bs-example">
       
   778       <p class="text-muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p>
       
   779       <p class="text-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
       
   780       <p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
       
   781       <p class="text-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
       
   782       <p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
       
   783       <p class="text-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
       
   784     </div>
       
   785 {% highlight html %}
       
   786 <p class="text-muted">...</p>
       
   787 <p class="text-primary">...</p>
       
   788 <p class="text-success">...</p>
       
   789 <p class="text-info">...</p>
       
   790 <p class="text-warning">...</p>
       
   791 <p class="text-danger">...</p>
       
   792 {% endhighlight %}
       
   793     <div class="bs-callout bs-callout-info">
       
   794       <h4>Dealing with specificity</h4>
       
   795       <p>Sometimes emphasis classes cannot be applied due to the specificity of another selector. In most cases, a sufficient workaround is to wrap your text in a <code>&lt;span&gt;</code> with the class.</p>
       
   796     </div>
       
   797 
       
   798 
       
   799     <!-- Abbreviations -->
       
   800     <h2 id="type-abbreviations">Abbreviations</h2>
       
   801     <p>Stylized implementation of HTML's <code>&lt;abbr&gt;</code> element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a <code>title</code> attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover.</p>
       
   802 
       
   803     <h3>Basic abbreviation</h3>
       
   804     <p>For expanded text on long hover of an abbreviation, include the <code>title</code> attribute with the <code>&lt;abbr&gt;</code> element.</p>
       
   805     <div class="bs-example">
       
   806       <p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
       
   807     </div>
       
   808 {% highlight html %}
       
   809 <abbr title="attribute">attr</abbr>
       
   810 {% endhighlight %}
       
   811 
       
   812     <h3>Initialism</h3>
       
   813     <p>Add <code>.initialism</code> to an abbreviation for a slightly smaller font-size.</p>
       
   814     <div class="bs-example">
       
   815       <p><abbr title="HyperText Markup Language" class="initialism">HTML</abbr> is the best thing since sliced bread.</p>
       
   816     </div>
       
   817 {% highlight html %}
       
   818 <abbr title="HyperText Markup Language" class="initialism">HTML</abbr>
       
   819 {% endhighlight %}
       
   820 
       
   821 
       
   822     <!-- Addresses -->
       
   823     <h2 id="type-addresses">Addresses</h2>
       
   824     <p>Present contact information for the nearest ancestor or the entire body of work. Preserve formatting by ending all lines with <code>&lt;br&gt;</code>.</p>
       
   825     <div class="bs-example">
       
   826       <address>
       
   827         <strong>Twitter, Inc.</strong><br>
       
   828         795 Folsom Ave, Suite 600<br>
       
   829         San Francisco, CA 94107<br>
       
   830         <abbr title="Phone">P:</abbr> (123) 456-7890
       
   831       </address>
       
   832       <address>
       
   833         <strong>Full Name</strong><br>
       
   834         <a href="mailto:#">first.last@example.com</a>
       
   835       </address>
       
   836     </div>
       
   837 {% highlight html %}
       
   838 <address>
       
   839   <strong>Twitter, Inc.</strong><br>
       
   840   795 Folsom Ave, Suite 600<br>
       
   841   San Francisco, CA 94107<br>
       
   842   <abbr title="Phone">P:</abbr> (123) 456-7890
       
   843 </address>
       
   844 
       
   845 <address>
       
   846   <strong>Full Name</strong><br>
       
   847   <a href="mailto:#">first.last@example.com</a>
       
   848 </address>
       
   849 {% endhighlight %}
       
   850 
       
   851 
       
   852     <!-- Blockquotes -->
       
   853     <h2 id="type-blockquotes">Blockquotes</h2>
       
   854     <p>For quoting blocks of content from another source within your document.</p>
       
   855 
       
   856     <h3>Default blockquote</h3>
       
   857     <p>Wrap <code>&lt;blockquote&gt;</code> around any <abbr title="HyperText Markup Language">HTML</abbr> as the quote. For straight quotes, we recommend a <code>&lt;p&gt;</code>.</p>
       
   858     <div class="bs-example">
       
   859       <blockquote>
       
   860         <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
       
   861       </blockquote>
       
   862     </div>
       
   863 {% highlight html %}
       
   864 <blockquote>
       
   865   <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
       
   866 </blockquote>
       
   867 {% endhighlight %}
       
   868 
       
   869     <h3>Blockquote options</h3>
       
   870     <p>Style and content changes for simple variations on a standard <code>&lt;blockquote&gt;</code>.</p>
       
   871 
       
   872     <h4>Naming a source</h4>
       
   873     <p>Add <code>&lt;small&gt;</code> tag or <code>.small</code> class for identifying the source. Wrap the name of the source work in <code>&lt;cite&gt;</code>.</p>
       
   874     <div class="bs-example">
       
   875       <blockquote>
       
   876         <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
       
   877         <small>Someone famous in <cite title="Source Title">Source Title</cite></small>
       
   878       </blockquote>
       
   879     </div>
       
   880 {% highlight html %}
       
   881 <blockquote>
       
   882   <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
       
   883   <small>Someone famous in <cite title="Source Title">Source Title</cite></small>
       
   884 </blockquote>
       
   885 {% endhighlight %}
       
   886 
       
   887     <h4>Alternate displays</h4>
       
   888     <p>Use <code>.pull-right</code> for a floated, right-aligned blockquote.</p>
       
   889     <div class="bs-example" style="overflow: hidden;">
       
   890       <blockquote class="pull-right">
       
   891         <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
       
   892         <small>Someone famous in <cite title="Source Title">Source Title</cite></small>
       
   893       </blockquote>
       
   894     </div>
       
   895 {% highlight html %}
       
   896 <blockquote class="pull-right">
       
   897   ...
       
   898 </blockquote>
       
   899 {% endhighlight %}
       
   900 
       
   901 
       
   902     <!-- Lists -->
       
   903     <h2 id="type-lists">Lists</h2>
       
   904 
       
   905     <h3>Unordered</h3>
       
   906     <p>A list of items in which the order does <em>not</em> explicitly matter.</p>
       
   907     <div class="bs-example">
       
   908       <ul>
       
   909         <li>Lorem ipsum dolor sit amet</li>
       
   910         <li>Consectetur adipiscing elit</li>
       
   911         <li>Integer molestie lorem at massa</li>
       
   912         <li>Facilisis in pretium nisl aliquet</li>
       
   913         <li>Nulla volutpat aliquam velit
       
   914           <ul>
       
   915             <li>Phasellus iaculis neque</li>
       
   916             <li>Purus sodales ultricies</li>
       
   917             <li>Vestibulum laoreet porttitor sem</li>
       
   918             <li>Ac tristique libero volutpat at</li>
       
   919           </ul>
       
   920         </li>
       
   921         <li>Faucibus porta lacus fringilla vel</li>
       
   922         <li>Aenean sit amet erat nunc</li>
       
   923         <li>Eget porttitor lorem</li>
       
   924       </ul>
       
   925     </div>
       
   926 {% highlight html %}
       
   927 <ul>
       
   928   <li>...</li>
       
   929 </ul>
       
   930 {% endhighlight %}
       
   931 
       
   932     <h3>Ordered</h3>
       
   933     <p>A list of items in which the order <em>does</em> explicitly matter.</p>
       
   934     <div class="bs-example">
       
   935       <ol>
       
   936         <li>Lorem ipsum dolor sit amet</li>
       
   937         <li>Consectetur adipiscing elit</li>
       
   938         <li>Integer molestie lorem at massa</li>
       
   939         <li>Facilisis in pretium nisl aliquet</li>
       
   940         <li>Nulla volutpat aliquam velit</li>
       
   941         <li>Faucibus porta lacus fringilla vel</li>
       
   942         <li>Aenean sit amet erat nunc</li>
       
   943         <li>Eget porttitor lorem</li>
       
   944       </ol>
       
   945     </div>
       
   946 {% highlight html %}
       
   947 <ol>
       
   948   <li>...</li>
       
   949 </ol>
       
   950 {% endhighlight %}
       
   951 
       
   952     <h3>Unstyled</h3>
       
   953     <p>Remove the default <code>list-style</code> and left margin on list items (immediate children only). <strong>This only applies to immediate children list items</strong>, meaning you will need to add the class for any nested lists as well.</p>
       
   954     <div class="bs-example">
       
   955       <ul class="list-unstyled">
       
   956         <li>Lorem ipsum dolor sit amet</li>
       
   957         <li>Consectetur adipiscing elit</li>
       
   958         <li>Integer molestie lorem at massa</li>
       
   959         <li>Facilisis in pretium nisl aliquet</li>
       
   960         <li>Nulla volutpat aliquam velit
       
   961           <ul>
       
   962             <li>Phasellus iaculis neque</li>
       
   963             <li>Purus sodales ultricies</li>
       
   964             <li>Vestibulum laoreet porttitor sem</li>
       
   965             <li>Ac tristique libero volutpat at</li>
       
   966           </ul>
       
   967         </li>
       
   968         <li>Faucibus porta lacus fringilla vel</li>
       
   969         <li>Aenean sit amet erat nunc</li>
       
   970         <li>Eget porttitor lorem</li>
       
   971       </ul>
       
   972     </div>
       
   973 {% highlight html %}
       
   974 <ul class="list-unstyled">
       
   975   <li>...</li>
       
   976 </ul>
       
   977 {% endhighlight %}
       
   978 
       
   979     <h3>Inline</h3>
       
   980     <p>Place all list items on a single line with <code>display: inline-block;</code> and some light padding.</p>
       
   981     <div class="bs-example">
       
   982       <ul class="list-inline">
       
   983         <li>Lorem ipsum</li>
       
   984         <li>Phasellus iaculis</li>
       
   985         <li>Nulla volutpat</li>
       
   986       </ul>
       
   987     </div>
       
   988 {% highlight html %}
       
   989 <ul class="list-inline">
       
   990   <li>...</li>
       
   991 </ul>
       
   992 {% endhighlight %}
       
   993 
       
   994     <h3>Description</h3>
       
   995     <p>A list of terms with their associated descriptions.</p>
       
   996     <div class="bs-example">
       
   997       <dl>
       
   998         <dt>Description lists</dt>
       
   999         <dd>A description list is perfect for defining terms.</dd>
       
  1000         <dt>Euismod</dt>
       
  1001         <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
       
  1002         <dd>Donec id elit non mi porta gravida at eget metus.</dd>
       
  1003         <dt>Malesuada porta</dt>
       
  1004         <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
       
  1005       </dl>
       
  1006     </div>
       
  1007 {% highlight html %}
       
  1008 <dl>
       
  1009   <dt>...</dt>
       
  1010   <dd>...</dd>
       
  1011 </dl>
       
  1012 {% endhighlight %}
       
  1013 
       
  1014     <h4>Horizontal description</h4>
       
  1015     <p>Make terms and descriptions in <code>&lt;dl&gt;</code> line up side-by-side. Starts off stacked like default <code>&lt;dl&gt;</code>s, but when the navbar expands, so do these.</p>
       
  1016     <div class="bs-example">
       
  1017       <dl class="dl-horizontal">
       
  1018         <dt>Description lists</dt>
       
  1019         <dd>A description list is perfect for defining terms.</dd>
       
  1020         <dt>Euismod</dt>
       
  1021         <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
       
  1022         <dd>Donec id elit non mi porta gravida at eget metus.</dd>
       
  1023         <dt>Malesuada porta</dt>
       
  1024         <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
       
  1025         <dt>Felis euismod semper eget lacinia</dt>
       
  1026         <dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
       
  1027       </dl>
       
  1028     </div>
       
  1029 {% highlight html %}
       
  1030 <dl class="dl-horizontal">
       
  1031   <dt>...</dt>
       
  1032   <dd>...</dd>
       
  1033 </dl>
       
  1034 {% endhighlight %}
       
  1035 
       
  1036     <div class="bs-callout bs-callout-info">
       
  1037       <h4>Auto-truncating</h4>
       
  1038       <p>Horizontal description lists will truncate terms that are too long to fit in the left column with <code>text-overflow</code>. In narrower viewports, they will change to the default stacked layout.</p>
       
  1039     </div>
       
  1040   </div>
       
  1041 
       
  1042 
       
  1043   <!-- Code
       
  1044   ================================================== -->
       
  1045   <div class="bs-docs-section">
       
  1046     <div class="page-header">
       
  1047       <h1 id="code">Code</h1>
       
  1048     </div>
       
  1049 
       
  1050     <h2>Inline</h2>
       
  1051     <p>Wrap inline snippets of code with <code>&lt;code&gt;</code>.</p>
       
  1052 <div class="bs-example">
       
  1053   For example, <code>&lt;section&gt;</code> should be wrapped as inline.
       
  1054 </div>
       
  1055 {% highlight html %}
       
  1056 For example, <code>&lt;section&gt;</code> should be wrapped as inline.
       
  1057 {% endhighlight %}
       
  1058 
       
  1059     <h2>Basic block</h2>
       
  1060     <p>Use <code>&lt;pre&gt;</code> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.</p>
       
  1061 <div class="bs-example">
       
  1062   <pre>&lt;p&gt;Sample text here...&lt;/p&gt;</pre>
       
  1063 </div>
       
  1064 {% highlight html %}
       
  1065 <pre>&lt;p&gt;Sample text here...&lt;/p&gt;</pre>
       
  1066 {% endhighlight %}
       
  1067 
       
  1068     <p>You may optionally add the <code>.pre-scrollable</code> class, which will set a max-height of 350px and provide a y-axis scrollbar.</p>
       
  1069   </div>
       
  1070 
       
  1071 
       
  1072 
       
  1073   <!-- Tables
       
  1074   ================================================== -->
       
  1075   <div class="bs-docs-section">
       
  1076     <div class="page-header">
       
  1077       <h1 id="tables">Tables</h1>
       
  1078     </div>
       
  1079 
       
  1080     <h2 id="tables-example">Basic example</h2>
       
  1081     <p>For basic styling&mdash;light padding and only horizontal dividers&mdash;add the base class <code>.table</code> to any <code>&lt;table&gt;</code>. It may seem super redundant, but given the widespread use of tables for other plugins like calendars and date pickers, we've opted to isolate our custom table styles.</p>
       
  1082     <div class="bs-example">
       
  1083       <table class="table">
       
  1084         <thead>
       
  1085           <tr>
       
  1086             <th>#</th>
       
  1087             <th>First Name</th>
       
  1088             <th>Last Name</th>
       
  1089             <th>Username</th>
       
  1090           </tr>
       
  1091         </thead>
       
  1092         <tbody>
       
  1093           <tr>
       
  1094             <td>1</td>
       
  1095             <td>Mark</td>
       
  1096             <td>Otto</td>
       
  1097             <td>@mdo</td>
       
  1098           </tr>
       
  1099           <tr>
       
  1100             <td>2</td>
       
  1101             <td>Jacob</td>
       
  1102             <td>Thornton</td>
       
  1103             <td>@fat</td>
       
  1104           </tr>
       
  1105           <tr>
       
  1106             <td>3</td>
       
  1107             <td>Larry</td>
       
  1108             <td>the Bird</td>
       
  1109             <td>@twitter</td>
       
  1110           </tr>
       
  1111         </tbody>
       
  1112       </table>
       
  1113     </div><!-- /example -->
       
  1114 {% highlight html %}
       
  1115 <table class="table">
       
  1116   ...
       
  1117 </table>
       
  1118 {% endhighlight %}
       
  1119 
       
  1120 
       
  1121     <h2 id="tables-striped">Striped rows</h2>
       
  1122     <p>Use <code>.table-striped</code> to add zebra-striping to any table row within the <code>&lt;tbody&gt;</code>.</p>
       
  1123     <div class="bs-callout bs-callout-danger">
       
  1124       <h4>Cross-browser compatibility</h4>
       
  1125       <p>Striped tables are styled via the <code>:nth-child</code> CSS selector, which is not available in Internet Explorer 8.</p>
       
  1126     </div>
       
  1127     <div class="bs-example">
       
  1128       <table class="table table-striped">
       
  1129         <thead>
       
  1130           <tr>
       
  1131             <th>#</th>
       
  1132             <th>First Name</th>
       
  1133             <th>Last Name</th>
       
  1134             <th>Username</th>
       
  1135           </tr>
       
  1136         </thead>
       
  1137         <tbody>
       
  1138           <tr>
       
  1139             <td>1</td>
       
  1140             <td>Mark</td>
       
  1141             <td>Otto</td>
       
  1142             <td>@mdo</td>
       
  1143           </tr>
       
  1144           <tr>
       
  1145             <td>2</td>
       
  1146             <td>Jacob</td>
       
  1147             <td>Thornton</td>
       
  1148             <td>@fat</td>
       
  1149           </tr>
       
  1150           <tr>
       
  1151             <td>3</td>
       
  1152             <td>Larry</td>
       
  1153             <td>the Bird</td>
       
  1154             <td>@twitter</td>
       
  1155           </tr>
       
  1156         </tbody>
       
  1157       </table>
       
  1158     </div><!-- /example -->
       
  1159 {% highlight html %}
       
  1160 <table class="table table-striped">
       
  1161   ...
       
  1162 </table>
       
  1163 {% endhighlight %}
       
  1164 
       
  1165 
       
  1166     <h2 id="tables-bordered">Bordered table</h2>
       
  1167     <p>Add <code>.table-bordered</code> for borders on all sides of the table and cells.</p>
       
  1168     <div class="bs-example">
       
  1169       <table class="table table-bordered">
       
  1170         <thead>
       
  1171           <tr>
       
  1172             <th>#</th>
       
  1173             <th>First Name</th>
       
  1174             <th>Last Name</th>
       
  1175             <th>Username</th>
       
  1176           </tr>
       
  1177         </thead>
       
  1178         <tbody>
       
  1179           <tr>
       
  1180             <td rowspan="2">1</td>
       
  1181             <td>Mark</td>
       
  1182             <td>Otto</td>
       
  1183             <td>@mdo</td>
       
  1184           </tr>
       
  1185           <tr>
       
  1186             <td>Mark</td>
       
  1187             <td>Otto</td>
       
  1188             <td>@TwBootstrap</td>
       
  1189           </tr>
       
  1190           <tr>
       
  1191             <td>2</td>
       
  1192             <td>Jacob</td>
       
  1193             <td>Thornton</td>
       
  1194             <td>@fat</td>
       
  1195           </tr>
       
  1196           <tr>
       
  1197             <td>3</td>
       
  1198             <td colspan="2">Larry the Bird</td>
       
  1199             <td>@twitter</td>
       
  1200           </tr>
       
  1201         </tbody>
       
  1202       </table>
       
  1203     </div><!-- /example -->
       
  1204 {% highlight html %}
       
  1205 <table class="table table-bordered">
       
  1206   ...
       
  1207 </table>
       
  1208 {% endhighlight %}
       
  1209 
       
  1210 
       
  1211     <h2 id="tables-hover-rows">Hover rows</h2>
       
  1212     <p>Add <code>.table-hover</code> to enable a hover state on table rows within a <code>&lt;tbody&gt;</code>.</p>
       
  1213     <div class="bs-example">
       
  1214       <table class="table table-hover">
       
  1215         <thead>
       
  1216           <tr>
       
  1217             <th>#</th>
       
  1218             <th>First Name</th>
       
  1219             <th>Last Name</th>
       
  1220             <th>Username</th>
       
  1221           </tr>
       
  1222         </thead>
       
  1223         <tbody>
       
  1224           <tr>
       
  1225             <td>1</td>
       
  1226             <td>Mark</td>
       
  1227             <td>Otto</td>
       
  1228             <td>@mdo</td>
       
  1229           </tr>
       
  1230           <tr>
       
  1231             <td>2</td>
       
  1232             <td>Jacob</td>
       
  1233             <td>Thornton</td>
       
  1234             <td>@fat</td>
       
  1235           </tr>
       
  1236           <tr>
       
  1237             <td>3</td>
       
  1238             <td colspan="2">Larry the Bird</td>
       
  1239             <td>@twitter</td>
       
  1240           </tr>
       
  1241         </tbody>
       
  1242       </table>
       
  1243     </div><!-- /example -->
       
  1244 {% highlight html %}
       
  1245 <table class="table table-hover">
       
  1246   ...
       
  1247 </table>
       
  1248 {% endhighlight %}
       
  1249 
       
  1250 
       
  1251     <h2 id="tables-condensed">Condensed table</h2>
       
  1252     <p>Add <code>.table-condensed</code> to make tables more compact by cutting cell padding in half.</p>
       
  1253     <div class="bs-example">
       
  1254       <table class="table table-condensed">
       
  1255         <thead>
       
  1256           <tr>
       
  1257             <th>#</th>
       
  1258             <th>First Name</th>
       
  1259             <th>Last Name</th>
       
  1260             <th>Username</th>
       
  1261           </tr>
       
  1262         </thead>
       
  1263         <tbody>
       
  1264           <tr>
       
  1265             <td>1</td>
       
  1266             <td>Mark</td>
       
  1267             <td>Otto</td>
       
  1268             <td>@mdo</td>
       
  1269           </tr>
       
  1270           <tr>
       
  1271             <td>2</td>
       
  1272             <td>Jacob</td>
       
  1273             <td>Thornton</td>
       
  1274             <td>@fat</td>
       
  1275           </tr>
       
  1276           <tr>
       
  1277             <td>3</td>
       
  1278             <td colspan="2">Larry the Bird</td>
       
  1279             <td>@twitter</td>
       
  1280           </tr>
       
  1281         </tbody>
       
  1282       </table>
       
  1283     </div><!-- /example -->
       
  1284 {% highlight html %}
       
  1285 <table class="table table-condensed">
       
  1286   ...
       
  1287 </table>
       
  1288 {% endhighlight %}
       
  1289 
       
  1290 
       
  1291     <h2 id="tables-contextual-classes">Contextual classes</h2>
       
  1292     <p>Use contextual classes to color table rows or individual cells.</p>
       
  1293     <div class="table-responsive">
       
  1294       <table class="table table-bordered table-striped">
       
  1295         <colgroup>
       
  1296           <col class="col-xs-1">
       
  1297           <col class="col-xs-7">
       
  1298         </colgroup>
       
  1299         <thead>
       
  1300           <tr>
       
  1301             <th>Class</th>
       
  1302             <th>Description</th>
       
  1303           </tr>
       
  1304         </thead>
       
  1305         <tbody>
       
  1306           <tr>
       
  1307             <td>
       
  1308               <code>.active</code>
       
  1309             </td>
       
  1310             <td>Applies the hover color to a particular row or cell</td>
       
  1311           </tr>
       
  1312           <tr>
       
  1313             <td>
       
  1314               <code>.success</code>
       
  1315             </td>
       
  1316             <td>Indicates a successful or positive action</td>
       
  1317           </tr>
       
  1318           <tr>
       
  1319             <td>
       
  1320               <code>.warning</code>
       
  1321             </td>
       
  1322             <td>Indicates a warning that might need attention</td>
       
  1323           </tr>
       
  1324           <tr>
       
  1325             <td>
       
  1326               <code>.danger</code>
       
  1327             </td>
       
  1328             <td>Indicates a dangerous or potentially negative action</td>
       
  1329           </tr>
       
  1330         </tbody>
       
  1331       </table>
       
  1332     </div>
       
  1333     <div class="bs-example">
       
  1334       <table class="table">
       
  1335         <thead>
       
  1336           <tr>
       
  1337             <th>#</th>
       
  1338             <th>Column heading</th>
       
  1339             <th>Column heading</th>
       
  1340             <th>Column heading</th>
       
  1341           </tr>
       
  1342         </thead>
       
  1343         <tbody>
       
  1344           <tr class="active">
       
  1345             <td>1</td>
       
  1346             <td>Column content</td>
       
  1347             <td>Column content</td>
       
  1348             <td>Column content</td>
       
  1349           </tr>
       
  1350           <tr>
       
  1351             <td>2</td>
       
  1352             <td>Column content</td>
       
  1353             <td>Column content</td>
       
  1354             <td>Column content</td>
       
  1355           </tr>
       
  1356           <tr class="success">
       
  1357             <td>3</td>
       
  1358             <td>Column content</td>
       
  1359             <td>Column content</td>
       
  1360             <td>Column content</td>
       
  1361           </tr>
       
  1362           <tr>
       
  1363             <td>4</td>
       
  1364             <td>Column content</td>
       
  1365             <td>Column content</td>
       
  1366             <td>Column content</td>
       
  1367           </tr>
       
  1368           <tr class="warning">
       
  1369             <td>5</td>
       
  1370             <td>Column content</td>
       
  1371             <td>Column content</td>
       
  1372             <td>Column content</td>
       
  1373           </tr>
       
  1374           <tr>
       
  1375             <td>6</td>
       
  1376             <td>Column content</td>
       
  1377             <td>Column content</td>
       
  1378             <td>Column content</td>
       
  1379           </tr>
       
  1380           <tr class="danger">
       
  1381             <td>7</td>
       
  1382             <td>Column content</td>
       
  1383             <td>Column content</td>
       
  1384             <td>Column content</td>
       
  1385           </tr>
       
  1386         </tbody>
       
  1387       </table>
       
  1388     </div><!-- /example -->
       
  1389 {% highlight html %}
       
  1390 <!-- On rows -->
       
  1391 <tr class="active">...</tr>
       
  1392 <tr class="success">...</tr>
       
  1393 <tr class="warning">...</tr>
       
  1394 <tr class="danger">...</tr>
       
  1395 
       
  1396 <!-- On cells (`td` or `th`) -->
       
  1397 <tr>
       
  1398   <td class="active">...</td>
       
  1399   <td class="success">...</td>
       
  1400   <td class="warning">...</td>
       
  1401   <td class="danger">...</td>
       
  1402 </tr>
       
  1403 {% endhighlight %}
       
  1404 
       
  1405 
       
  1406     <h2 id="tables-responsive">Responsive tables</h2>
       
  1407     <p>Create responsive tables by wrapping any <code>.table</code> in <code>.table-responsive</code> to make them scroll horizontally up to small devices (under 768px). When viewing on anything larger than 768px wide, you will not see any difference in these tables.</p>
       
  1408     <div class="bs-example">
       
  1409       <div class="table-responsive">
       
  1410         <table class="table">
       
  1411           <thead>
       
  1412             <tr>
       
  1413               <th>#</th>
       
  1414               <th>Table heading</th>
       
  1415               <th>Table heading</th>
       
  1416               <th>Table heading</th>
       
  1417               <th>Table heading</th>
       
  1418               <th>Table heading</th>
       
  1419               <th>Table heading</th>
       
  1420             </tr>
       
  1421           </thead>
       
  1422           <tbody>
       
  1423             <tr>
       
  1424               <td>1</td>
       
  1425               <td>Table cell</td>
       
  1426               <td>Table cell</td>
       
  1427               <td>Table cell</td>
       
  1428               <td>Table cell</td>
       
  1429               <td>Table cell</td>
       
  1430               <td>Table cell</td>
       
  1431             </tr>
       
  1432             <tr>
       
  1433               <td>2</td>
       
  1434               <td>Table cell</td>
       
  1435               <td>Table cell</td>
       
  1436               <td>Table cell</td>
       
  1437               <td>Table cell</td>
       
  1438               <td>Table cell</td>
       
  1439               <td>Table cell</td>
       
  1440             </tr>
       
  1441             <tr>
       
  1442               <td>3</td>
       
  1443               <td>Table cell</td>
       
  1444               <td>Table cell</td>
       
  1445               <td>Table cell</td>
       
  1446               <td>Table cell</td>
       
  1447               <td>Table cell</td>
       
  1448               <td>Table cell</td>
       
  1449             </tr>
       
  1450           </tbody>
       
  1451         </table>
       
  1452       </div><!-- /.table-responsive -->
       
  1453 
       
  1454       <div class="table-responsive">
       
  1455         <table class="table table-bordered">
       
  1456           <thead>
       
  1457             <tr>
       
  1458               <th>#</th>
       
  1459               <th>Table heading</th>
       
  1460               <th>Table heading</th>
       
  1461               <th>Table heading</th>
       
  1462               <th>Table heading</th>
       
  1463               <th>Table heading</th>
       
  1464               <th>Table heading</th>
       
  1465             </tr>
       
  1466           </thead>
       
  1467           <tbody>
       
  1468             <tr>
       
  1469               <td>1</td>
       
  1470               <td>Table cell</td>
       
  1471               <td>Table cell</td>
       
  1472               <td>Table cell</td>
       
  1473               <td>Table cell</td>
       
  1474               <td>Table cell</td>
       
  1475               <td>Table cell</td>
       
  1476             </tr>
       
  1477             <tr>
       
  1478               <td>2</td>
       
  1479               <td>Table cell</td>
       
  1480               <td>Table cell</td>
       
  1481               <td>Table cell</td>
       
  1482               <td>Table cell</td>
       
  1483               <td>Table cell</td>
       
  1484               <td>Table cell</td>
       
  1485             </tr>
       
  1486             <tr>
       
  1487               <td>3</td>
       
  1488               <td>Table cell</td>
       
  1489               <td>Table cell</td>
       
  1490               <td>Table cell</td>
       
  1491               <td>Table cell</td>
       
  1492               <td>Table cell</td>
       
  1493               <td>Table cell</td>
       
  1494             </tr>
       
  1495           </tbody>
       
  1496         </table>
       
  1497       </div><!-- /.table-responsive -->
       
  1498     </div><!-- /example -->
       
  1499 {% highlight html %}
       
  1500 <div class="table-responsive">
       
  1501   <table class="table">
       
  1502     ...
       
  1503   </table>
       
  1504 </div>
       
  1505 {% endhighlight %}
       
  1506 
       
  1507   </div>
       
  1508 
       
  1509 
       
  1510 
       
  1511   <!-- Forms
       
  1512   ================================================== -->
       
  1513   <div class="bs-docs-section">
       
  1514     <div class="page-header">
       
  1515       <h1 id="forms">Forms</h1>
       
  1516     </div>
       
  1517 
       
  1518     <h2 id="forms-example">Basic example</h2>
       
  1519     <p>Individual form controls automatically receive some global styling. All textual <code>&lt;input&gt;</code>, <code>&lt;textarea&gt;</code>, and <code>&lt;select&gt;</code> elements with <code>.form-control</code> are set to <code>width: 100%;</code> by default. Wrap labels and controls in <code>.form-group</code> for optimum spacing.</p>
       
  1520     <div class="bs-example">
       
  1521       <form role="form">
       
  1522         <div class="form-group">
       
  1523           <label for="exampleInputEmail1">Email address</label>
       
  1524           <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
       
  1525         </div>
       
  1526         <div class="form-group">
       
  1527           <label for="exampleInputPassword1">Password</label>
       
  1528           <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
       
  1529         </div>
       
  1530         <div class="form-group">
       
  1531           <label for="exampleInputFile">File input</label>
       
  1532           <input type="file" id="exampleInputFile">
       
  1533           <p class="help-block">Example block-level help text here.</p>
       
  1534         </div>
       
  1535         <div class="checkbox">
       
  1536           <label>
       
  1537             <input type="checkbox"> Check me out
       
  1538           </label>
       
  1539         </div>
       
  1540         <button type="submit" class="btn btn-default">Submit</button>
       
  1541       </form>
       
  1542     </div><!-- /example -->
       
  1543 {% highlight html %}
       
  1544 <form role="form">
       
  1545   <div class="form-group">
       
  1546     <label for="exampleInputEmail1">Email address</label>
       
  1547     <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
       
  1548   </div>
       
  1549   <div class="form-group">
       
  1550     <label for="exampleInputPassword1">Password</label>
       
  1551     <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
       
  1552   </div>
       
  1553   <div class="form-group">
       
  1554     <label for="exampleInputFile">File input</label>
       
  1555     <input type="file" id="exampleInputFile">
       
  1556     <p class="help-block">Example block-level help text here.</p>
       
  1557   </div>
       
  1558   <div class="checkbox">
       
  1559     <label>
       
  1560       <input type="checkbox"> Check me out
       
  1561     </label>
       
  1562   </div>
       
  1563   <button type="submit" class="btn btn-default">Submit</button>
       
  1564 </form>
       
  1565 {% endhighlight %}
       
  1566 
       
  1567 
       
  1568     <h2 id="forms-inline">Inline form</h2>
       
  1569     <p>Add <code>.form-inline</code> to your <code>&lt;form&gt;</code> for left-aligned and inline-block controls. <strong>This only applies to forms within viewports that are at least 768px wide.</strong></p>
       
  1570     <div class="bs-callout bs-callout-danger">
       
  1571       <h4>Requires custom widths</h4>
       
  1572       <p>Inputs, selects, and textareas are 100% wide by default in Bootstrap. To use the inline form, you'll have to set a width on the form controls used within.</p>
       
  1573     </div>
       
  1574     <div class="bs-callout bs-callout-danger">
       
  1575       <h4>Always add labels</h4>
       
  1576       <p>Screen readers will have trouble with your forms if you don't include a label for every input. For these inline forms, you can hide the labels using the <code>.sr-only</code> class.</p>
       
  1577     </div>
       
  1578     <div class="bs-example">
       
  1579       <form class="form-inline" role="form">
       
  1580         <div class="form-group">
       
  1581           <label class="sr-only" for="exampleInputEmail2">Email address</label>
       
  1582           <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email">
       
  1583         </div>
       
  1584         <div class="form-group">
       
  1585           <label class="sr-only" for="exampleInputPassword2">Password</label>
       
  1586           <input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password">
       
  1587         </div>
       
  1588         <div class="checkbox">
       
  1589           <label>
       
  1590             <input type="checkbox"> Remember me
       
  1591           </label>
       
  1592         </div>
       
  1593         <button type="submit" class="btn btn-default">Sign in</button>
       
  1594       </form>
       
  1595     </div><!-- /example -->
       
  1596 {% highlight html %}
       
  1597 <form class="form-inline" role="form">
       
  1598   <div class="form-group">
       
  1599     <label class="sr-only" for="exampleInputEmail2">Email address</label>
       
  1600     <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email">
       
  1601   </div>
       
  1602   <div class="form-group">
       
  1603     <label class="sr-only" for="exampleInputPassword2">Password</label>
       
  1604     <input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password">
       
  1605   </div>
       
  1606   <div class="checkbox">
       
  1607     <label>
       
  1608       <input type="checkbox"> Remember me
       
  1609     </label>
       
  1610   </div>
       
  1611   <button type="submit" class="btn btn-default">Sign in</button>
       
  1612 </form>
       
  1613 {% endhighlight %}
       
  1614 
       
  1615 
       
  1616     <h2 id="forms-horizontal">Horizontal form</h2>
       
  1617     <p>Use Bootstrap's predefined grid classes to align labels and groups of form controls in a horizontal layout by adding <code>.form-horizontal</code> to the form. Doing so changes <code>.form-group</code>s to behave as grid rows, so no need for <code>.row</code>.</p>
       
  1618     <div class="bs-example">
       
  1619       <form class="form-horizontal" role="form">
       
  1620         <div class="form-group">
       
  1621           <label for="inputEmail3" class="col-sm-2 control-label">Email</label>
       
  1622           <div class="col-sm-10">
       
  1623             <input type="email" class="form-control" id="inputEmail3" placeholder="Email">
       
  1624           </div>
       
  1625         </div>
       
  1626         <div class="form-group">
       
  1627           <label for="inputPassword3" class="col-sm-2 control-label">Password</label>
       
  1628           <div class="col-sm-10">
       
  1629             <input type="password" class="form-control" id="inputPassword3" placeholder="Password">
       
  1630           </div>
       
  1631         </div>
       
  1632         <div class="form-group">
       
  1633           <div class="col-sm-offset-2 col-sm-10">
       
  1634             <div class="checkbox">
       
  1635               <label>
       
  1636                 <input type="checkbox"> Remember me
       
  1637               </label>
       
  1638             </div>
       
  1639           </div>
       
  1640         </div>
       
  1641         <div class="form-group">
       
  1642           <div class="col-sm-offset-2 col-sm-10">
       
  1643             <button type="submit" class="btn btn-default">Sign in</button>
       
  1644           </div>
       
  1645         </div>
       
  1646       </form>
       
  1647     </div><!-- /.bs-example -->
       
  1648 {% highlight html %}
       
  1649 <form class="form-horizontal" role="form">
       
  1650   <div class="form-group">
       
  1651     <label for="inputEmail3" class="col-sm-2 control-label">Email</label>
       
  1652     <div class="col-sm-10">
       
  1653       <input type="email" class="form-control" id="inputEmail3" placeholder="Email">
       
  1654     </div>
       
  1655   </div>
       
  1656   <div class="form-group">
       
  1657     <label for="inputPassword3" class="col-sm-2 control-label">Password</label>
       
  1658     <div class="col-sm-10">
       
  1659       <input type="password" class="form-control" id="inputPassword3" placeholder="Password">
       
  1660     </div>
       
  1661   </div>
       
  1662   <div class="form-group">
       
  1663     <div class="col-sm-offset-2 col-sm-10">
       
  1664       <div class="checkbox">
       
  1665         <label>
       
  1666           <input type="checkbox"> Remember me
       
  1667         </label>
       
  1668       </div>
       
  1669     </div>
       
  1670   </div>
       
  1671   <div class="form-group">
       
  1672     <div class="col-sm-offset-2 col-sm-10">
       
  1673       <button type="submit" class="btn btn-default">Sign in</button>
       
  1674     </div>
       
  1675   </div>
       
  1676 </form>
       
  1677 {% endhighlight %}
       
  1678 
       
  1679 
       
  1680     <h2 id="forms-controls">Supported controls</h2>
       
  1681     <p>Examples of standard form controls supported in an example form layout.</p>
       
  1682 
       
  1683     <h3>Inputs</h3>
       
  1684     <p>Most common form control, text-based input fields. Includes support for all HTML5 types: <code>text</code>, <code>password</code>, <code>datetime</code>, <code>datetime-local</code>, <code>date</code>, <code>month</code>, <code>time</code>, <code>week</code>, <code>number</code>, <code>email</code>, <code>url</code>, <code>search</code>, <code>tel</code>, and <code>color</code>.</p>
       
  1685     <div class="bs-callout bs-callout-danger">
       
  1686       <h4>Type declaration required</h4>
       
  1687       <p>Inputs will only be fully styled if their <code>type</code> is properly declared.</p>
       
  1688     </div>
       
  1689     <div class="bs-example">
       
  1690       <form role="form">
       
  1691         <input type="text" class="form-control" placeholder="Text input">
       
  1692       </form>
       
  1693     </div><!-- /.bs-example -->
       
  1694 {% highlight html %}
       
  1695 <input type="text" class="form-control" placeholder="Text input">
       
  1696 {% endhighlight %}
       
  1697     <div class="bs-callout bs-callout-info">
       
  1698       <h4>Input groups</h4>
       
  1699       <p>To add integrated text or buttons before and/or after any text-based <code>&lt;input&gt;</code>, <a href="../components/#input-groups">check out the input group component</a>.</p>
       
  1700     </div>
       
  1701 
       
  1702     <h3>Textarea</h3>
       
  1703     <p>Form control which supports multiple lines of text. Change <code>rows</code> attribute as necessary.</p>
       
  1704     <div class="bs-example">
       
  1705       <form role="form">
       
  1706         <textarea class="form-control" rows="3"></textarea>
       
  1707       </form>
       
  1708     </div><!-- /.bs-example -->
       
  1709 {% highlight html %}
       
  1710 <textarea class="form-control" rows="3"></textarea>
       
  1711 {% endhighlight %}
       
  1712 
       
  1713     <h3>Checkboxes and radios</h3>
       
  1714     <p>Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many.</p>
       
  1715     <h4>Default (stacked)</h4>
       
  1716     <div class="bs-example">
       
  1717       <form role="form">
       
  1718         <div class="checkbox">
       
  1719           <label>
       
  1720             <input type="checkbox" value="">
       
  1721             Option one is this and that&mdash;be sure to include why it's great
       
  1722           </label>
       
  1723         </div>
       
  1724         <br>
       
  1725         <div class="radio">
       
  1726           <label>
       
  1727             <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
       
  1728             Option one is this and that&mdash;be sure to include why it's great
       
  1729           </label>
       
  1730         </div>
       
  1731         <div class="radio">
       
  1732           <label>
       
  1733             <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
       
  1734             Option two can be something else and selecting it will deselect option one
       
  1735           </label>
       
  1736         </div>
       
  1737       </form>
       
  1738     </div><!-- /.bs-example -->
       
  1739 {% highlight html %}
       
  1740 <div class="checkbox">
       
  1741   <label>
       
  1742     <input type="checkbox" value="">
       
  1743     Option one is this and that&mdash;be sure to include why it's great
       
  1744   </label>
       
  1745 </div>
       
  1746 
       
  1747 <div class="radio">
       
  1748   <label>
       
  1749     <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
       
  1750     Option one is this and that&mdash;be sure to include why it's great
       
  1751   </label>
       
  1752 </div>
       
  1753 <div class="radio">
       
  1754   <label>
       
  1755     <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
       
  1756     Option two can be something else and selecting it will deselect option one
       
  1757   </label>
       
  1758 </div>
       
  1759 {% endhighlight %}
       
  1760 
       
  1761     <h4>Inline checkboxes</h4>
       
  1762     <p>Use <code>.checkbox-inline</code> or <code>.radio-inline</code> class to a series of checkboxes or radios for controls appear on the same line.</p>
       
  1763     <div class="bs-example">
       
  1764       <form role="form">
       
  1765         <label class="checkbox-inline">
       
  1766           <input type="checkbox" id="inlineCheckbox1" value="option1"> 1
       
  1767         </label>
       
  1768         <label class="checkbox-inline">
       
  1769           <input type="checkbox" id="inlineCheckbox2" value="option2"> 2
       
  1770         </label>
       
  1771         <label class="checkbox-inline">
       
  1772           <input type="checkbox" id="inlineCheckbox3" value="option3"> 3
       
  1773         </label>
       
  1774       </form>
       
  1775     </div><!-- /.bs-example -->
       
  1776 {% highlight html %}
       
  1777 <label class="checkbox-inline">
       
  1778   <input type="checkbox" id="inlineCheckbox1" value="option1"> 1
       
  1779 </label>
       
  1780 <label class="checkbox-inline">
       
  1781   <input type="checkbox" id="inlineCheckbox2" value="option2"> 2
       
  1782 </label>
       
  1783 <label class="checkbox-inline">
       
  1784   <input type="checkbox" id="inlineCheckbox3" value="option3"> 3
       
  1785 </label>
       
  1786 {% endhighlight %}
       
  1787 
       
  1788     <h3>Selects</h3>
       
  1789     <p>Use the default option, or add <code>multiple</code> to show multiple options at once.</p>
       
  1790     <div class="bs-example">
       
  1791       <form role="form">
       
  1792         <select class="form-control">
       
  1793           <option>1</option>
       
  1794           <option>2</option>
       
  1795           <option>3</option>
       
  1796           <option>4</option>
       
  1797           <option>5</option>
       
  1798         </select>
       
  1799         <br>
       
  1800         <select multiple class="form-control">
       
  1801           <option>1</option>
       
  1802           <option>2</option>
       
  1803           <option>3</option>
       
  1804           <option>4</option>
       
  1805           <option>5</option>
       
  1806         </select>
       
  1807       </form>
       
  1808     </div><!-- /.bs-example -->
       
  1809 {% highlight html %}
       
  1810 <select class="form-control">
       
  1811   <option>1</option>
       
  1812   <option>2</option>
       
  1813   <option>3</option>
       
  1814   <option>4</option>
       
  1815   <option>5</option>
       
  1816 </select>
       
  1817 
       
  1818 <select multiple class="form-control">
       
  1819   <option>1</option>
       
  1820   <option>2</option>
       
  1821   <option>3</option>
       
  1822   <option>4</option>
       
  1823   <option>5</option>
       
  1824 </select>
       
  1825 {% endhighlight %}
       
  1826 
       
  1827 
       
  1828     <h2 id="forms-controls-static">Static control</h2>
       
  1829     <p>When you need to place plain text next to a form label within a horizontal form, use the <code>.form-control-static</code> class on a <code>&lt;p&gt;</code>.</p>
       
  1830     <div class="bs-example">
       
  1831       <form class="form-horizontal" role="form">
       
  1832         <div class="form-group">
       
  1833           <label class="col-sm-2 control-label">Email</label>
       
  1834           <div class="col-sm-10">
       
  1835             <p class="form-control-static">email@example.com</p>
       
  1836           </div>
       
  1837         </div>
       
  1838         <div class="form-group">
       
  1839           <label for="inputPassword" class="col-sm-2 control-label">Password</label>
       
  1840           <div class="col-sm-10">
       
  1841             <input type="password" class="form-control" id="inputPassword" placeholder="Password">
       
  1842           </div>
       
  1843         </div>
       
  1844       </form>
       
  1845     </div><!-- /.bs-example -->
       
  1846 {% highlight html %}
       
  1847 <form class="form-horizontal" role="form">
       
  1848   <div class="form-group">
       
  1849     <label class="col-sm-2 control-label">Email</label>
       
  1850     <div class="col-sm-10">
       
  1851       <p class="form-control-static">email@example.com</p>
       
  1852     </div>
       
  1853   </div>
       
  1854   <div class="form-group">
       
  1855     <label for="inputPassword" class="col-sm-2 control-label">Password</label>
       
  1856     <div class="col-sm-10">
       
  1857       <input type="password" class="form-control" id="inputPassword" placeholder="Password">
       
  1858     </div>
       
  1859   </div>
       
  1860 </form>
       
  1861 {% endhighlight %}
       
  1862 
       
  1863 
       
  1864     <h2 id="forms-control-states">Form states</h2>
       
  1865     <p>Provide feedback to users or visitors with basic feedback states on form controls and labels.</p>
       
  1866 
       
  1867     <h3 id="forms-input-focus">Input focus</h3>
       
  1868     <p>We remove the default <code>outline</code> styles on some form controls and apply a <code>box-shadow</code> in its place for <code>:focus</code>.</p>
       
  1869     <div class="bs-example">
       
  1870       <form role="form">
       
  1871         <input class="form-control" id="focusedInput" type="text" value="This is focused...">
       
  1872       </form>
       
  1873     </div>
       
  1874 {% highlight html %}
       
  1875 <input class="form-control" id="focusedInput" type="text" value="This is focused...">
       
  1876 {% endhighlight %}
       
  1877 
       
  1878     <h3 id="forms-disabled-inputs">Disabled inputs</h3>
       
  1879     <p>Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.</p>
       
  1880     <div class="bs-example">
       
  1881       <form role="form">
       
  1882         <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here…" disabled>
       
  1883       </form>
       
  1884     </div><!-- /.bs-example -->
       
  1885 {% highlight html %}
       
  1886 <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>
       
  1887 {% endhighlight %}
       
  1888 
       
  1889     <h3 id="forms-disabled-fieldsets">Disabled fieldsets</h3>
       
  1890     <p>Add the <code>disabled</code> attribute to a <code>&lt;fieldset&gt;</code> to disable all the controls within the <code>&lt;fieldset&gt;</code> at once.</p>
       
  1891 
       
  1892     <div class="bs-callout bs-callout-warning">
       
  1893       <h4>Link functionality of <code>&lt;a&gt;</code> not impacted</h4>
       
  1894       <p>This class will only change the appearance of <code>&lt;a class="btn btn-default"&gt;</code> buttons, not their functionality. Use custom JavaScript to disable links here.</p>
       
  1895     </div>
       
  1896 
       
  1897     <div class="bs-callout bs-callout-danger">
       
  1898       <h4>Cross-browser compatibility</h4>
       
  1899       <p>While Bootstrap will apply these styles in all browsers, Internet Explorer 9 and below don't actually support the <code>disabled</code> attribute on a <code>&lt;fieldset&gt;</code>. Use custom JavaScript to disable the fieldset in these browsers.</p>
       
  1900     </div>
       
  1901 
       
  1902     <div class="bs-example">
       
  1903       <form role="form">
       
  1904         <fieldset disabled>
       
  1905           <div class="form-group">
       
  1906             <label for="disabledTextInput">Disabled input</label>
       
  1907             <input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
       
  1908           </div>
       
  1909           <div class="form-group">
       
  1910             <label for="disabledSelect">Disabled select menu</label>
       
  1911             <select id="disabledSelect" class="form-control">
       
  1912               <option>Disabled select</option>
       
  1913             </select>
       
  1914           </div>
       
  1915           <div class="checkbox">
       
  1916             <label>
       
  1917               <input type="checkbox"> Can't check this
       
  1918             </label>
       
  1919           </div>
       
  1920           <button type="submit" class="btn btn-primary">Submit</button>
       
  1921         </fieldset>
       
  1922       </form>
       
  1923     </div><!-- /.bs-example -->
       
  1924 {% highlight html %}
       
  1925 <form role="form">
       
  1926   <fieldset disabled>
       
  1927     <div class="form-group">
       
  1928       <label for="disabledTextInput">Disabled input</label>
       
  1929       <input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
       
  1930     </div>
       
  1931     <div class="form-group">
       
  1932       <label for="disabledSelect">Disabled select menu</label>
       
  1933       <select id="disabledSelect" class="form-control">
       
  1934         <option>Disabled select</option>
       
  1935       </select>
       
  1936     </div>
       
  1937     <div class="checkbox">
       
  1938       <label>
       
  1939         <input type="checkbox"> Can't check this
       
  1940       </label>
       
  1941     </div>
       
  1942     <button type="submit" class="btn btn-primary">Submit</button>
       
  1943   </fieldset>
       
  1944 </form>
       
  1945 {% endhighlight %}
       
  1946 
       
  1947     <h3 id="forms-validation">Validation states</h3>
       
  1948     <p>Bootstrap includes validation styles for error, warning, and success states on form controls. To use, add <code>.has-warning</code>, <code>.has-error</code>, or <code>.has-success</code> to the parent element. Any <code>.control-label</code>, <code>.form-control</code>, and <code>.help-block</code> within that element will receive the validation styles.</p>
       
  1949 
       
  1950     <div class="bs-example">
       
  1951       <form role="form">
       
  1952         <div class="form-group has-success">
       
  1953           <label class="control-label" for="inputSuccess">Input with success</label>
       
  1954           <input type="text" class="form-control" id="inputSuccess">
       
  1955         </div>
       
  1956         <div class="form-group has-warning">
       
  1957           <label class="control-label" for="inputWarning">Input with warning</label>
       
  1958           <input type="text" class="form-control" id="inputWarning">
       
  1959         </div>
       
  1960         <div class="form-group has-error">
       
  1961           <label class="control-label" for="inputError">Input with error</label>
       
  1962           <input type="text" class="form-control" id="inputError">
       
  1963         </div>
       
  1964       </form>
       
  1965     </div><!-- /.bs-example -->
       
  1966 {% highlight html %}
       
  1967 <div class="form-group has-success">
       
  1968   <label class="control-label" for="inputSuccess">Input with success</label>
       
  1969   <input type="text" class="form-control" id="inputSuccess">
       
  1970 </div>
       
  1971 <div class="form-group has-warning">
       
  1972   <label class="control-label" for="inputWarning">Input with warning</label>
       
  1973   <input type="text" class="form-control" id="inputWarning">
       
  1974 </div>
       
  1975 <div class="form-group has-error">
       
  1976   <label class="control-label" for="inputError">Input with error</label>
       
  1977   <input type="text" class="form-control" id="inputError">
       
  1978 </div>
       
  1979 {% endhighlight %}
       
  1980 
       
  1981 
       
  1982     <h2 id="forms-control-sizes">Control sizing</h2>
       
  1983     <p>Set heights using classes like <code>.input-lg</code>, and set widths using grid column classes like <code>.col-lg-*</code>.</p>
       
  1984 
       
  1985     <h3>Height sizing</h3>
       
  1986     <p>Create larger or smaller form controls that match button sizes.</p>
       
  1987     <div class="bs-example bs-example-control-sizing">
       
  1988       <form role="form">
       
  1989         <div class="controls">
       
  1990           <input class="form-control input-lg" type="text" placeholder=".input-lg">
       
  1991           <input type="text" class="form-control" placeholder="Default input">
       
  1992           <input class="form-control input-sm" type="text" placeholder=".input-sm">
       
  1993 
       
  1994           <select class="form-control input-lg">
       
  1995             <option value="">.input-lg</option>
       
  1996           </select>
       
  1997           <select class="form-control">
       
  1998             <option value="">Default select</option>
       
  1999           </select>
       
  2000           <select class="form-control input-sm">
       
  2001             <option value="">.input-sm</option>
       
  2002           </select>
       
  2003         </div>
       
  2004       </form>
       
  2005     </div><!-- /.bs-example -->
       
  2006 {% highlight html %}
       
  2007 <input class="form-control input-lg" type="text" placeholder=".input-lg">
       
  2008 <input class="form-control" type="text" placeholder="Default input">
       
  2009 <input class="form-control input-sm" type="text" placeholder=".input-sm">
       
  2010 
       
  2011 <select class="form-control input-lg">...</select>
       
  2012 <select class="form-control">...</select>
       
  2013 <select class="form-control input-sm">...</select>
       
  2014 {% endhighlight %}
       
  2015 
       
  2016     <h3>Column sizing</h3>
       
  2017     <p>Wrap inputs in grid columns, or any custom parent element, to easily enforce desired widths.</p>
       
  2018     <div class="bs-example">
       
  2019       <form role="form">
       
  2020         <div class="row">
       
  2021           <div class="col-xs-2">
       
  2022             <input type="text" class="form-control" placeholder=".col-xs-2">
       
  2023           </div>
       
  2024           <div class="col-xs-3">
       
  2025             <input type="text" class="form-control" placeholder=".col-xs-3">
       
  2026           </div>
       
  2027           <div class="col-xs-4">
       
  2028             <input type="text" class="form-control" placeholder=".col-xs-4">
       
  2029           </div>
       
  2030         </div>
       
  2031       </form>
       
  2032     </div><!-- /.bs-example -->
       
  2033 {% highlight html %}
       
  2034 <div class="row">
       
  2035   <div class="col-xs-2">
       
  2036     <input type="text" class="form-control" placeholder=".col-xs-2">
       
  2037   </div>
       
  2038   <div class="col-xs-3">
       
  2039     <input type="text" class="form-control" placeholder=".col-xs-3">
       
  2040   </div>
       
  2041   <div class="col-xs-4">
       
  2042     <input type="text" class="form-control" placeholder=".col-xs-4">
       
  2043   </div>
       
  2044 </div>
       
  2045 {% endhighlight %}
       
  2046 
       
  2047     <h2 id="forms-help-text">Help text</h2>
       
  2048     <p>Block level help text for form controls.</p>
       
  2049     <div class="bs-example">
       
  2050       <form role="form">
       
  2051         <input type="text" class="form-control">
       
  2052         <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
       
  2053       </form>
       
  2054     </div><!-- /.bs-example -->
       
  2055 {% highlight html %}
       
  2056 <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
       
  2057 {% endhighlight %}
       
  2058 
       
  2059   </div>
       
  2060 
       
  2061 
       
  2062 
       
  2063   <!-- Buttons
       
  2064   ================================================== -->
       
  2065   <div class="bs-docs-section">
       
  2066     <div class="page-header">
       
  2067       <h1 id="buttons">Buttons</h1>
       
  2068     </div>
       
  2069 
       
  2070     <h2 id="buttons-options">Options</h2>
       
  2071     <p>Use any of the available button classes to quickly create a styled button.</p>
       
  2072     <div class="bs-example">
       
  2073       <button type="button" class="btn btn-default">Default</button>
       
  2074       <button type="button" class="btn btn-primary">Primary</button>
       
  2075       <button type="button" class="btn btn-success">Success</button>
       
  2076       <button type="button" class="btn btn-info">Info</button>
       
  2077       <button type="button" class="btn btn-warning">Warning</button>
       
  2078       <button type="button" class="btn btn-danger">Danger</button>
       
  2079       <button type="button" class="btn btn-link">Link</button>
       
  2080     </div>
       
  2081 {% highlight html %}
       
  2082 <!-- Standard button -->
       
  2083 <button type="button" class="btn btn-default">Default</button>
       
  2084 
       
  2085 <!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
       
  2086 <button type="button" class="btn btn-primary">Primary</button>
       
  2087 
       
  2088 <!-- Indicates a successful or positive action -->
       
  2089 <button type="button" class="btn btn-success">Success</button>
       
  2090 
       
  2091 <!-- Contextual button for informational alert messages -->
       
  2092 <button type="button" class="btn btn-info">Info</button>
       
  2093 
       
  2094 <!-- Indicates caution should be taken with this action -->
       
  2095 <button type="button" class="btn btn-warning">Warning</button>
       
  2096 
       
  2097 <!-- Indicates a dangerous or potentially negative action -->
       
  2098 <button type="button" class="btn btn-danger">Danger</button>
       
  2099 
       
  2100 <!-- Deemphasize a button by making it look like a link while maintaining button behavior -->
       
  2101 <button type="button" class="btn btn-link">Link</button>
       
  2102 {% endhighlight %}
       
  2103 
       
  2104     <h2 id="buttons-sizes">Sizes</h2>
       
  2105     <p>Fancy larger or smaller buttons? Add <code>.btn-lg</code>, <code>.btn-sm</code>, or <code>.btn-xs</code> for additional sizes.</p>
       
  2106     <div class="bs-example">
       
  2107       <p>
       
  2108         <button type="button" class="btn btn-primary btn-lg">Large button</button>
       
  2109         <button type="button" class="btn btn-default btn-lg">Large button</button>
       
  2110       </p>
       
  2111       <p>
       
  2112         <button type="button" class="btn btn-primary">Default button</button>
       
  2113         <button type="button" class="btn btn-default">Default button</button>
       
  2114       </p>
       
  2115       <p>
       
  2116         <button type="button" class="btn btn-primary btn-sm">Small button</button>
       
  2117         <button type="button" class="btn btn-default btn-sm">Small button</button>
       
  2118       </p>
       
  2119       <p>
       
  2120         <button type="button" class="btn btn-primary btn-xs">Extra small button</button>
       
  2121         <button type="button" class="btn btn-default btn-xs">Extra small button</button>
       
  2122       </p>
       
  2123     </div>
       
  2124 {% highlight html %}
       
  2125 <p>
       
  2126   <button type="button" class="btn btn-primary btn-lg">Large button</button>
       
  2127   <button type="button" class="btn btn-default btn-lg">Large button</button>
       
  2128 </p>
       
  2129 <p>
       
  2130   <button type="button" class="btn btn-primary">Default button</button>
       
  2131   <button type="button" class="btn btn-default">Default button</button>
       
  2132 </p>
       
  2133 <p>
       
  2134   <button type="button" class="btn btn-primary btn-sm">Small button</button>
       
  2135   <button type="button" class="btn btn-default btn-sm">Small button</button>
       
  2136 </p>
       
  2137 <p>
       
  2138   <button type="button" class="btn btn-primary btn-xs">Extra small button</button>
       
  2139   <button type="button" class="btn btn-default btn-xs">Extra small button</button>
       
  2140 </p>
       
  2141 {% endhighlight %}
       
  2142 
       
  2143     <p>Create block level buttons&mdash;those that span the full width of a parent&mdash; by adding <code>.btn-block</code>.</p>
       
  2144     <div class="bs-example">
       
  2145       <div class="well" style="max-width: 400px; margin: 0 auto 10px;">
       
  2146         <button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
       
  2147         <button type="button" class="btn btn-default btn-lg btn-block">Block level button</button>
       
  2148       </div>
       
  2149     </div>
       
  2150 {% highlight html %}
       
  2151 <button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
       
  2152 <button type="button" class="btn btn-default btn-lg btn-block">Block level button</button>
       
  2153 {% endhighlight %}
       
  2154 
       
  2155 
       
  2156     <h2 id="buttons-active">Active state</h2>
       
  2157     <p>Buttons will appear pressed (with a darker background, darker border, and inset shadow) when active. For <code>&lt;button&gt;</code> elements, this is done via <code>:active</code>. For <code>&lt;a&gt;</code> elements, it's done with <code>.active</code>. However, you may use <code>.active</code> <code>&lt;button&gt;</code>s should you need to replicate the active state progammatically.</p>
       
  2158 
       
  2159     <h3>Button element</h3>
       
  2160     <p>No need to add <code>:active</code> as it's a pseudo-class, but if you need to force the same appearance, go ahead and add <code>.active</code>.</p>
       
  2161     <p class="bs-example">
       
  2162       <button type="button" class="btn btn-primary btn-lg active">Primary button</button>
       
  2163       <button type="button" class="btn btn-default btn-lg active">Button</button>
       
  2164     </p>
       
  2165 {% highlight html %}
       
  2166 <button type="button" class="btn btn-primary btn-lg active">Primary button</button>
       
  2167 <button type="button" class="btn btn-default btn-lg active">Button</button>
       
  2168 {% endhighlight %}
       
  2169 
       
  2170     <h3>Anchor element</h3>
       
  2171     <p>Add the <code>.active</code> class to <code>&lt;a&gt;</code> buttons.</p>
       
  2172     <p class="bs-example">
       
  2173       <a href="#" class="btn btn-primary btn-lg active" role="button">Primary link</a>
       
  2174       <a href="#" class="btn btn-default btn-lg active" role="button">Link</a>
       
  2175     </p>
       
  2176 {% highlight html %}
       
  2177 <a href="#" class="btn btn-primary btn-lg active" role="button">Primary link</a>
       
  2178 <a href="#" class="btn btn-default btn-lg active" role="button">Link</a>
       
  2179 {% endhighlight %}
       
  2180 
       
  2181 
       
  2182     <h2 id="buttons-disabled">Disabled state</h2>
       
  2183     <p>Make buttons look unclickable by fading them back 50%.</p>
       
  2184 
       
  2185     <h3>Button element</h3>
       
  2186     <p>Add the <code>disabled</code> attribute to <code>&lt;button&gt;</code> buttons.</p>
       
  2187     <p class="bs-example">
       
  2188       <button type="button" class="btn btn-primary btn-lg" disabled="disabled">Primary button</button>
       
  2189       <button type="button" class="btn btn-default btn-lg" disabled="disabled">Button</button>
       
  2190     </p>
       
  2191 {% highlight html %}
       
  2192 <button type="button" class="btn btn-lg btn-primary" disabled="disabled">Primary button</button>
       
  2193 <button type="button" class="btn btn-default btn-lg" disabled="disabled">Button</button>
       
  2194 {% endhighlight %}
       
  2195 
       
  2196     <div class="bs-callout bs-callout-danger">
       
  2197       <h4>Cross-browser compatibility</h4>
       
  2198       <p>If you add the <code>disabled</code> attribute to a <code>&lt;button&gt;</code>, Internet Explorer 9 and below will render text gray with a nasty text-shadow that we cannot fix.</p>
       
  2199     </div>
       
  2200 
       
  2201     <h3>Anchor element</h3>
       
  2202     <p>Add the <code>.disabled</code> class to <code>&lt;a&gt;</code> buttons.</p>
       
  2203     <p class="bs-example">
       
  2204       <a href="#" class="btn btn-primary btn-lg disabled" role="button">Primary link</a>
       
  2205       <a href="#" class="btn btn-default btn-lg disabled" role="button">Link</a>
       
  2206     </p>
       
  2207 {% highlight html %}
       
  2208 <a href="#" class="btn btn-primary btn-lg disabled" role="button">Primary link</a>
       
  2209 <a href="#" class="btn btn-default btn-lg disabled" role="button">Link</a>
       
  2210 {% endhighlight %}
       
  2211     <p>
       
  2212       We use <code>.disabled</code> as a utility class here, similar to the common <code>.active</code> class, so no prefix is required.
       
  2213     </p>
       
  2214     <div class="bs-callout bs-callout-warning">
       
  2215       <h4>Link functionality not impacted</h4>
       
  2216       <p>This class will only change the <code>&lt;a&gt;</code>'s appearance, not its functionality. Use custom JavaScript to disable links here.</p>
       
  2217     </div>
       
  2218     <div class="bs-callout bs-callout-warning">
       
  2219       <h4>Context-specific usage</h4>
       
  2220       <p>While button classes can be used on <code>&lt;a&gt;</code> and <code>&lt;button&gt;</code> elements, only <code>&lt;button&gt;</code> elements are supported within our nav and navbar components.</p>
       
  2221     </div>
       
  2222 
       
  2223 
       
  2224     <h2 id="buttons-tags">Button tags</h2>
       
  2225     <p>Use the button classes on an <code>&lt;a&gt;</code>, <code>&lt;button&gt;</code>, or <code>&lt;input&gt;</code> element.</p>
       
  2226     <form class="bs-example">
       
  2227       <a class="btn btn-default" href="#" role="button">Link</a>
       
  2228       <button class="btn btn-default" type="submit">Button</button>
       
  2229       <input class="btn btn-default" type="button" value="Input">
       
  2230       <input class="btn btn-default" type="submit" value="Submit">
       
  2231     </form>
       
  2232 {% highlight html %}
       
  2233 <a class="btn btn-default" href="#" role="button">Link</a>
       
  2234 <button class="btn btn-default" type="submit">Button</button>
       
  2235 <input class="btn btn-default" type="button" value="Input">
       
  2236 <input class="btn btn-default" type="submit" value="Submit">
       
  2237 {% endhighlight %}
       
  2238 
       
  2239     <div class="bs-callout bs-callout-warning">
       
  2240       <h4>Cross-browser rendering</h4>
       
  2241       <p>As a best practice, <strong>we highly recommend using the <code>&lt;button&gt;</code> element whenever possible</strong> to ensure matching cross-browser rendering.</p>
       
  2242       <p>Among other things, there's <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=697451">a Firefox bug</a> that prevents us from setting the <code>line-height</code> of <code>&lt;input&gt;</code>-based buttons, causing them to not exactly match the height of other buttons on Firefox.</p>
       
  2243     </div>
       
  2244 
       
  2245   </div>
       
  2246 
       
  2247 
       
  2248 
       
  2249   <!-- Images
       
  2250   ================================================== -->
       
  2251   <div class="bs-docs-section">
       
  2252     <div class="page-header">
       
  2253       <h1 id="images">Images</h1>
       
  2254     </div>
       
  2255 
       
  2256     <p>Add classes to an <code>&lt;img&gt;</code> element to easily style images in any project.</p>
       
  2257     <div class="bs-callout bs-callout-danger">
       
  2258       <h4>Cross-browser compatibility</h4>
       
  2259       <p>Keep in mind that Internet Explorer 8 lacks support for rounded corners.</p>
       
  2260     </div>
       
  2261     <div class="bs-example bs-example-images">
       
  2262       <img data-src="holder.js/140x140" class="img-rounded" alt="A generic square placeholder image with rounded corners">
       
  2263       <img data-src="holder.js/140x140" class="img-circle" alt="A generic square placeholder image where only the portion within the circle circumscribed about said square is visible">
       
  2264       <img data-src="holder.js/140x140" class="img-thumbnail" alt="A generic square placeholder image with a white border around it, making it resemble a photograph taken with an old instant camera">
       
  2265     </div>
       
  2266 {% highlight html %}
       
  2267 <img src="..." alt="..." class="img-rounded">
       
  2268 <img src="..." alt="..." class="img-circle">
       
  2269 <img src="..." alt="..." class="img-thumbnail">
       
  2270 {% endhighlight %}
       
  2271 
       
  2272     <div class="bs-callout bs-callout-warning">
       
  2273       <h4>Responsive images</h4>
       
  2274       <p>Looking for how to make images more responsive? <a href="#overview-responsive-images">Check out the responsive images section</a> up top.</p>
       
  2275     </div>
       
  2276 
       
  2277   </div>
       
  2278 
       
  2279 
       
  2280   <!-- Helpers
       
  2281   ================================================== -->
       
  2282   <div class="bs-docs-section">
       
  2283     <div class="page-header">
       
  2284       <h1 id="helper-classes">Helper classes</h1>
       
  2285     </div>
       
  2286 
       
  2287 
       
  2288     <h3 id="helper-classes-close">Close icon</h3>
       
  2289     <p>Use the generic close icon for dismissing content like modals and alerts.</p>
       
  2290     <div class="bs-example">
       
  2291       <p><button type="button" class="close" aria-hidden="true">&times;</button></p>
       
  2292     </div>
       
  2293 {% highlight html %}
       
  2294 <button type="button" class="close" aria-hidden="true">&times;</button>
       
  2295 {% endhighlight %}
       
  2296 
       
  2297 
       
  2298     <h3 id="helper-classes-carets">Carets</h3>
       
  2299     <p>Use carets to indicate dropdown functionality and direction. Note that the default caret will reverse automatically in <a href="../components/#btn-dropdowns-dropup">dropup menus</a>.</p>
       
  2300     <div class="bs-example">
       
  2301       <span class="caret"></span>
       
  2302     </div>
       
  2303 {% highlight html %}
       
  2304 <span class="caret"></span>
       
  2305 {% endhighlight %}
       
  2306 
       
  2307 
       
  2308     <h3 id="helper-classes-floats">Quick floats</h3>
       
  2309     <p>Float an element to the left or right with a class. <code>!important</code> is included to avoid specificity issues. Classes can also be used as mixins.</p>
       
  2310 {% highlight html %}
       
  2311 <div class="pull-left">...</div>
       
  2312 <div class="pull-right">...</div>
       
  2313 {% endhighlight %}
       
  2314 {% highlight css %}
       
  2315 // Classes
       
  2316 .pull-left {
       
  2317   float: left !important;
       
  2318 }
       
  2319 .pull-right {
       
  2320   float: right !important;
       
  2321 }
       
  2322 
       
  2323 // Usage as mixins
       
  2324 .element {
       
  2325   .pull-left();
       
  2326 }
       
  2327 .another-element {
       
  2328   .pull-right();
       
  2329 }
       
  2330 {% endhighlight %}
       
  2331 
       
  2332     <div class="bs-callout bs-callout-warning">
       
  2333       <h4>Not for use in navbars</h4>
       
  2334       <p>To align components in navbars with utility classes, use <code>.navbar-left</code> or <code>.navbar-right</code> instead. <a href="../components/#navbar-component-alignment">See the navbar docs</a> for details.</p>
       
  2335     </div>
       
  2336 
       
  2337 
       
  2338     <h3 id="helper-classes-center">Center content blocks</h3>
       
  2339     <p>Set an element to <code>display: block</code> and center via <code>margin</code>. Available as a mixin and class.</p>
       
  2340 {% highlight html %}
       
  2341 <div class="center-block">...</div>
       
  2342 {% endhighlight %}
       
  2343 {% highlight css %}
       
  2344 // Classes
       
  2345 .center-block {
       
  2346   display: block;
       
  2347   margin-left: auto;
       
  2348   margin-right: auto;
       
  2349 }
       
  2350 
       
  2351 // Usage as mixins
       
  2352 .element {
       
  2353   .center-block();
       
  2354 }
       
  2355 {% endhighlight %}
       
  2356 
       
  2357 
       
  2358 
       
  2359     <h3 id="helper-classes-clearfix">Clearfix</h3>
       
  2360     <p>Clear the <code>float</code> on any element with the <code>.clearfix</code> class. Utilizes <a href="http://nicolasgallagher.com/micro-clearfix-hack/">the micro clearfix</a> as popularized by Nicolas Gallagher. Can also be used as a mixin.</p>
       
  2361 {% highlight html %}
       
  2362 <!-- Usage as a class -->
       
  2363 <div class="clearfix">...</div>
       
  2364 {% endhighlight %}
       
  2365 {% highlight css %}
       
  2366 // Mixin itself
       
  2367 .clearfix() {
       
  2368   &:before,
       
  2369   &:after {
       
  2370     content: " ";
       
  2371     display: table;
       
  2372   }
       
  2373   &:after {
       
  2374     clear: both;
       
  2375   }
       
  2376 }
       
  2377 
       
  2378 // Usage as a Mixin
       
  2379 .element {
       
  2380   .clearfix();
       
  2381 }
       
  2382 {% endhighlight %}
       
  2383 
       
  2384 
       
  2385     <h3 id="helper-classes-show-hide">Showing and hiding content</h3>
       
  2386     <p>Force an element to be shown or hidden (<strong>including for screen readers</strong>) with the use of <code>.show</code> and <code>.hidden</code> classes. These classes use <code>!important</code> to avoid specificity conflicts, just like the <a href="#helper-classes-floats">quick floats</a>. They are only available for block level toggling. They can also be used as mixins.</p>
       
  2387     <p><code>.hide</code> is available, but it does not always affect screen readers and is <strong>deprecated</strong> as of v3.0.1. Use <code>.hidden</code> or <code>.sr-only</code> instead.</p>
       
  2388     <p>Furthermore, <code>.invisible</code> can be used to toggle only the visibility of an element, meaning its <code>display</code> is not modified and the element can still affect the flow of the document.</p>
       
  2389 {% highlight html %}
       
  2390 <div class="show">...</div>
       
  2391 <div class="hidden">...</div>
       
  2392 {% endhighlight %}
       
  2393 {% highlight css %}
       
  2394 // Classes
       
  2395 .show {
       
  2396   display: block !important;
       
  2397 }
       
  2398 .hidden {
       
  2399   display: none !important;
       
  2400   visibility: hidden !important;
       
  2401 }
       
  2402 .invisible {
       
  2403   visibility: hidden;
       
  2404 }
       
  2405 
       
  2406 // Usage as mixins
       
  2407 .element {
       
  2408   .show();
       
  2409 }
       
  2410 .another-element {
       
  2411   .hidden();
       
  2412 }
       
  2413 {% endhighlight %}
       
  2414 
       
  2415 
       
  2416     <h3 id="helper-classes-screen-readers">Screen reader content</h3>
       
  2417     <p>Hide an element to all devices <strong>except screen readers</strong> with <code>.sr-only</code>. Necessary for following <a href="{{ page.base_url }}getting-started#accessibility">accessibility best practices</a>. Can also be used as a mixin.</p>
       
  2418 {% highlight html %}
       
  2419 <a class="sr-only" href="#content">Skip to main content</a>
       
  2420 {% endhighlight %}
       
  2421 {% highlight css %}
       
  2422 // Usage as a Mixin
       
  2423 .skip-navigation {
       
  2424   .sr-only();
       
  2425 }
       
  2426 {% endhighlight %}
       
  2427 
       
  2428 
       
  2429     <h3 id="helper-classes-image-replacement">Image replacement</h3>
       
  2430     <p>Utilize the <code>.text-hide</code> class or mixin to help replace an element's text content with a background image.</p>
       
  2431 {% highlight html %}
       
  2432 <h1 class="text-hide">Custom heading</h1>
       
  2433 {% endhighlight %}
       
  2434   {% highlight css %}
       
  2435 // Usage as a Mixin
       
  2436 .heading {
       
  2437   .text-hide();
       
  2438 }
       
  2439 {% endhighlight %}
       
  2440   </div>
       
  2441 
       
  2442 
       
  2443 
       
  2444   <!-- Responsive utilities
       
  2445   ================================================== -->
       
  2446   <div class="bs-docs-section" id="responsive-utilities">
       
  2447     <div class="page-header">
       
  2448       <h1>Responsive utilities</h1>
       
  2449     </div>
       
  2450     <p class="lead">For faster mobile-friendly development, use these utility classes for showing and hiding content by device via media query. Also included are utility classes for toggling content when printed.</p>
       
  2451     <p>Try to use these on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation. <strong>Responsive utilities are currently only available for block and table toggling.</strong> Use with inline and table elements is currently not supported.</p>
       
  2452 
       
  2453 
       
  2454     <h2 id="responsive-utilities-classes">Available classes</h2>
       
  2455     <p>Use a single or combination of the available classes for toggling content across viewport breakpoints.</p>
       
  2456     <div class="table-responsive">
       
  2457       <table class="table table-bordered table-striped responsive-utilities">
       
  2458         <thead>
       
  2459           <tr>
       
  2460             <th></th>
       
  2461             <th>
       
  2462               Extra small devices
       
  2463               <small>Phones (&lt;768px)</small>
       
  2464             </th>
       
  2465             <th>
       
  2466               Small devices
       
  2467               <small>Tablets (&ge;768px)</small>
       
  2468             </th>
       
  2469             <th>
       
  2470               Medium devices
       
  2471               <small>Desktops (&ge;992px)</small>
       
  2472             </th>
       
  2473             <th>
       
  2474               Large devices
       
  2475               <small>Desktops (&ge;1200px)</small>
       
  2476             </th>
       
  2477           </tr>
       
  2478         </thead>
       
  2479         <tbody>
       
  2480           <tr>
       
  2481             <th><code>.visible-xs</code></th>
       
  2482             <td class="is-visible">Visible</td>
       
  2483             <td class="is-hidden">Hidden</td>
       
  2484             <td class="is-hidden">Hidden</td>
       
  2485             <td class="is-hidden">Hidden</td>
       
  2486           </tr>
       
  2487           <tr>
       
  2488             <th><code>.visible-sm</code></th>
       
  2489             <td class="is-hidden">Hidden</td>
       
  2490             <td class="is-visible">Visible</td>
       
  2491             <td class="is-hidden">Hidden</td>
       
  2492             <td class="is-hidden">Hidden</td>
       
  2493           </tr>
       
  2494           <tr>
       
  2495             <th><code>.visible-md</code></th>
       
  2496             <td class="is-hidden">Hidden</td>
       
  2497             <td class="is-hidden">Hidden</td>
       
  2498             <td class="is-visible">Visible</td>
       
  2499             <td class="is-hidden">Hidden</td>
       
  2500           </tr>
       
  2501           <tr>
       
  2502             <th><code>.visible-lg</code></th>
       
  2503             <td class="is-hidden">Hidden</td>
       
  2504             <td class="is-hidden">Hidden</td>
       
  2505             <td class="is-hidden">Hidden</td>
       
  2506             <td class="is-visible">Visible</td>
       
  2507           </tr>
       
  2508         </tbody>
       
  2509         <tbody>
       
  2510           <tr>
       
  2511             <th><code>.hidden-xs</code></th>
       
  2512             <td class="is-hidden">Hidden</td>
       
  2513             <td class="is-visible">Visible</td>
       
  2514             <td class="is-visible">Visible</td>
       
  2515             <td class="is-visible">Visible</td>
       
  2516           </tr>
       
  2517           <tr>
       
  2518             <th><code>.hidden-sm</code></th>
       
  2519             <td class="is-visible">Visible</td>
       
  2520             <td class="is-hidden">Hidden</td>
       
  2521             <td class="is-visible">Visible</td>
       
  2522             <td class="is-visible">Visible</td>
       
  2523           </tr>
       
  2524           <tr>
       
  2525             <th><code>.hidden-md</code></th>
       
  2526             <td class="is-visible">Visible</td>
       
  2527             <td class="is-visible">Visible</td>
       
  2528             <td class="is-hidden">Hidden</td>
       
  2529             <td class="is-visible">Visible</td>
       
  2530           </tr>
       
  2531           <tr>
       
  2532             <th><code>.hidden-lg</code></th>
       
  2533             <td class="is-visible">Visible</td>
       
  2534             <td class="is-visible">Visible</td>
       
  2535             <td class="is-visible">Visible</td>
       
  2536             <td class="is-hidden">Hidden</td>
       
  2537           </tr>
       
  2538         </tbody>
       
  2539       </table>
       
  2540     </div>
       
  2541 
       
  2542 
       
  2543     <h2 id="responsive-utilities-print">Print classes</h2>
       
  2544     <p>Similar to the regular responsive classes, use these for toggling content for print.</p>
       
  2545     <div class="table-responsive">
       
  2546       <table class="table table-bordered table-striped responsive-utilities">
       
  2547         <thead>
       
  2548           <tr>
       
  2549             <th>Class</th>
       
  2550             <th>Browser</th>
       
  2551             <th>Print</th>
       
  2552           </tr>
       
  2553         </thead>
       
  2554         <tbody>
       
  2555           <tr>
       
  2556             <th><code>.visible-print</code></th>
       
  2557             <td class="is-hidden">Hidden</td>
       
  2558             <td class="is-visible">Visible</td>
       
  2559           </tr>
       
  2560           <tr>
       
  2561             <th><code>.hidden-print</code></th>
       
  2562             <td class="is-visible">Visible</td>
       
  2563             <td class="is-hidden">Hidden</td>
       
  2564           </tr>
       
  2565         </tbody>
       
  2566       </table>
       
  2567     </div>
       
  2568 
       
  2569 
       
  2570     <h2 id="responsive-utilities-tests">Test cases</h2>
       
  2571     <p>Resize your browser or load on different devices to test the responsive utility classes.</p>
       
  2572 
       
  2573     <h3>Visible on...</h3>
       
  2574     <p>Green checkmarks indicate the element <strong>is visible</strong> in your current viewport.</p>
       
  2575     <div class="row responsive-utilities-test visible-on">
       
  2576       <div class="col-xs-6 col-sm-3">
       
  2577         <span class="hidden-xs">Extra small</span>
       
  2578         <span class="visible-xs">&#10004; Visible on x-small</span>
       
  2579       </div>
       
  2580       <div class="col-xs-6 col-sm-3">
       
  2581         <span class="hidden-sm">Small</span>
       
  2582         <span class="visible-sm">&#10004; Visible on small</span>
       
  2583       </div>
       
  2584       <div class="clearfix visible-xs"></div>
       
  2585       <div class="col-xs-6 col-sm-3">
       
  2586         <span class="hidden-md">Medium</span>
       
  2587         <span class="visible-md">&#10004; Visible on medium</span>
       
  2588       </div>
       
  2589       <div class="col-xs-6 col-sm-3">
       
  2590         <span class="hidden-lg">Large</span>
       
  2591         <span class="visible-lg">&#10004; Visible on large</span>
       
  2592       </div>
       
  2593     </div>
       
  2594     <div class="row responsive-utilities-test visible-on">
       
  2595       <div class="col-xs-6 col-sm-6">
       
  2596         <span class="hidden-xs hidden-sm">Extra small and small</span>
       
  2597         <span class="visible-xs visible-sm">&#10004; Visible on x-small and small</span>
       
  2598       </div>
       
  2599       <div class="col-xs-6 col-sm-6">
       
  2600         <span class="hidden-md hidden-lg">Medium and large</span>
       
  2601         <span class="visible-md visible-lg">&#10004; Visible on medium and large</span>
       
  2602       </div>
       
  2603       <div class="clearfix visible-xs"></div>
       
  2604       <div class="col-xs-6 col-sm-6">
       
  2605         <span class="hidden-xs hidden-md">Extra small and medium</span>
       
  2606         <span class="visible-xs visible-md">&#10004; Visible on x-small and medium</span>
       
  2607       </div>
       
  2608       <div class="col-xs-6 col-sm-6">
       
  2609         <span class="hidden-sm hidden-lg">Small and large</span>
       
  2610         <span class="visible-sm visible-lg">&#10004; Visible on small and large</span>
       
  2611       </div>
       
  2612       <div class="clearfix visible-xs"></div>
       
  2613       <div class="col-xs-6 col-sm-6">
       
  2614         <span class="hidden-xs hidden-lg">Extra small and large</span>
       
  2615         <span class="visible-xs visible-lg">&#10004; Visible on x-small and large</span>
       
  2616       </div>
       
  2617       <div class="col-xs-6 col-sm-6">
       
  2618         <span class="hidden-sm hidden-md">Small and medium</span>
       
  2619         <span class="visible-sm visible-md">&#10004; Visible on small and medium</span>
       
  2620       </div>
       
  2621     </div>
       
  2622 
       
  2623     <h3>Hidden on...</h3>
       
  2624     <p>Here, green checkmarks also indicate the element <strong>is hidden</strong> in your current viewport.</p>
       
  2625     <div class="row responsive-utilities-test hidden-on">
       
  2626       <div class="col-xs-6 col-sm-3">
       
  2627         <span class="hidden-xs">Extra small</span>
       
  2628         <span class="visible-xs">&#10004; Hidden on x-small</span>
       
  2629       </div>
       
  2630       <div class="col-xs-6 col-sm-3">
       
  2631         <span class="hidden-sm">Small</span>
       
  2632         <span class="visible-sm">&#10004; Hidden on small</span>
       
  2633       </div>
       
  2634       <div class="clearfix visible-xs"></div>
       
  2635       <div class="col-xs-6 col-sm-3">
       
  2636         <span class="hidden-md">Medium</span>
       
  2637         <span class="visible-md">&#10004; Hidden on medium</span>
       
  2638       </div>
       
  2639       <div class="col-xs-6 col-sm-3">
       
  2640         <span class="hidden-lg">Large</span>
       
  2641         <span class="visible-lg">&#10004; Hidden on large</span>
       
  2642       </div>
       
  2643     </div>
       
  2644     <div class="row responsive-utilities-test hidden-on">
       
  2645       <div class="col-xs-6 col-sm-6">
       
  2646         <span class="hidden-xs hidden-sm">Extra small and small</span>
       
  2647         <span class="visible-xs visible-sm">&#10004; Hidden on x-small and small</span>
       
  2648       </div>
       
  2649       <div class="col-xs-6 col-sm-6">
       
  2650         <span class="hidden-md hidden-lg">Medium and large</span>
       
  2651         <span class="visible-md visible-lg">&#10004; Hidden on medium and large</span>
       
  2652       </div>
       
  2653       <div class="clearfix visible-xs"></div>
       
  2654       <div class="col-xs-6 col-sm-6">
       
  2655         <span class="hidden-xs hidden-md">Extra small and medium</span>
       
  2656         <span class="visible-xs visible-md">&#10004; Hidden on x-small and medium</span>
       
  2657       </div>
       
  2658       <div class="col-xs-6 col-sm-6">
       
  2659         <span class="hidden-sm hidden-lg">Small and large</span>
       
  2660         <span class="visible-sm visible-lg">&#10004; Hidden on small and large</span>
       
  2661       </div>
       
  2662       <div class="clearfix visible-xs"></div>
       
  2663       <div class="col-xs-6 col-sm-6">
       
  2664         <span class="hidden-xs hidden-lg">Extra small and large</span>
       
  2665         <span class="visible-xs visible-lg">&#10004; Hidden on x-small and large</span>
       
  2666       </div>
       
  2667       <div class="col-xs-6 col-sm-6">
       
  2668         <span class="hidden-sm hidden-md">Small and medium</span>
       
  2669         <span class="visible-sm visible-md">&#10004; Hidden on small and medium</span>
       
  2670       </div>
       
  2671     </div>
       
  2672 
       
  2673   </div>
       
Impressum Datenschutzerklärung