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