base-css.mustache 49.4 KB
Newer Older
1
2
3
<!-- Masthead
================================================== -->
<header class="jumbotron subhead" id="overview">
4
5
  <h1>{{_i}}Base CSS{{/i}}</h1>
  <p class="lead">{{_i}}On top of the scaffolding, basic HTML elements are styled and enhanced with extensible classes to provide a fresh, consistent look and feel.{{/i}}</p>
Jacob Thornton's avatar
Jacob Thornton committed
6
  <ul class="nav pills">
7
8
9
10
11
    <li><a href="./base-css.html#typography">{{_i}}Typography{{/i}}</a></li>
    <li><a href="./base-css.html#tables">{{_i}}Tables{{/i}}</a></li>
    <li><a href="./base-css.html#forms">{{_i}}Forms{{/i}}</a></li>
    <li><a href="./base-css.html#buttons">{{_i}}Buttons{{/i}}</a></li>
    <li><a href="./base-css.html#icons">{{_i}}Icons by Glyphicons{{/i}}</a></li>
Jacob Thornton's avatar
Jacob Thornton committed
12
  </ul>
13
14
15
16
17
18
19
</header>


<!-- Typography
================================================== -->
<section id="typography">
  <div class="page-header">
20
    <h1>{{_i}}Typography <small>Headings, paragraphs, lists, and other inline type elements</small>{{/i}}</h1>
21
22
  </div>

23
  <h2>{{_i}}Headings &amp; body copy{{/i}}</h2>
24
25
26
27

  <!-- Headings & Paragraph Copy -->
  <div class="row">
    <div class="span4">
28
29
30
      <h3>{{_i}}Typographic scale{{/i}}</h3>
      <p>{{_i}}The entire typographic grid is based on two Less variables in our preboot.less file: <code>@baseFontSize</code> and <code>@baseLineHeight</code>. The first is the base font-size used throughout and the second is the base line-height.{{/i}}</p>
      <p>{{_i}}We use those variables, and some math, to create the margins, paddings, and line-heights of all our type and more.{{/i}}</p>
31
32
    </div>
    <div class="span4">
33
      <h3>{{_i}}Example body text{{/i}}</h3>
34
35
36
37
38
      <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 ut id elit.</p>
      <p>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec sed odio dui.</p>
    </div>
    <div class="span4">
      <div class="well">
39
40
41
42
43
44
        <h1>h1. {{_i}}Heading 1{{/i}}</h1>
        <h2>h2. {{_i}}Heading 2{{/i}}</h2>
        <h3>h3. {{_i}}Heading 3{{/i}}</h3>
        <h4>h4. {{_i}}Heading 4{{/i}}</h4>
        <h5>h5. {{_i}}Heading 5{{/i}}</h5>
        <h6>h6. {{_i}}Heading 6{{/i}}</h6>
45
46
47
48
49
      </div>
    </div>
  </div>

  <!-- Misc Elements -->
50
  <h2>{{_i}}Emphasis, address, and abbreviation{{/i}}</h2>
51
52
53
  <table class="table table-bordered table-striped">
    <thead>
      <tr>
54
55
56
        <th>{{_i}}Element{{/i}}</th>
        <th>{{_i}}Usage{{/i}}</th>
        <th>{{_i}}Optional{{/i}}</th>
57
58
59
60
61
62
63
64
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>
          <code>&lt;strong&gt;</code>
        </td>
        <td>
65
          {{_i}}For emphasizing a snippet of text with <strong>important</strong>{{/i}}
66
67
        </td>
        <td>
68
          <span class="muted">{{_i}}None{{/i}}</span>
69
70
71
72
73
74
75
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;em&gt;</code>
        </td>
        <td>
76
          {{_i}}For emphasizing a snippet of text with <em>stress</em>{{/i}}
77
78
        </td>
        <td>
79
          <span class="muted">{{_i}}None{{/i}}</span>
80
81
82
83
84
85
86
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;abbr&gt;</code>
        </td>
        <td>
87
          {{_i}}Wraps abbreviations and acronyms to show the expanded version on hover{{/i}}
88
89
        </td>
        <td>
90
          {{_i}}Include optional <code>title</code> for expanded text{{/i}}
91
92
93
94
95
96
97
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;address&gt;</code>
        </td>
        <td>
98
          {{_i}}For contact information for its nearest ancestor or the entire body of work{{/i}}
99
100
        </td>
        <td>
101
          {{_i}}Preserve formatting by ending all lines with <code>&lt;br&gt;</code>{{/i}}
102
103
104
105
106
107
108
        </td>
      </tr>
    </tbody>
  </table>

  <div class="row">
    <div class="span4">
109
      <h3>{{_i}}Using emphasis{{/i}}</h3>
110
      <p><a href="#">Fusce dapibus</a>, <strong>tellus ac cursus commodo</strong>, <em>tortor mauris condimentum nibh</em>, ut fermentum massa justo sit amet risus. Maecenas faucibus mollis interdum. Nulla vitae elit libero, a pharetra augue.</p>
111
      <p>{{_i}}<strong>Note:</strong> Feel free to use <code>&lt;b&gt;</code> and <code>&lt;i&gt;</code> in HTML5, but their usage has changed a bit. <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.{{/i}}</p>
112
113
    </div>
    <div class="span4">
114
115
      <h3>{{_i}}Example addresses{{/i}}</h3>
      <p>{{_i}}Here are two examples of how the <code>&lt;address&gt;</code> tag can be used:{{/i}}</p>
116
117
118
119
120
121
122
      <address>
        <strong>Twitter, Inc.</strong><br>
        795 Folsom Ave, Suite 600<br>
        San Francisco, CA 94107<br>
        <abbr title="Phone">P:</abbr> (123) 456-7890
      </address>
      <address>
123
124
        <strong>{{_i}}Full Name{{/i}}</strong><br>
        <a mailto="#">{{_i}}first.last@gmail.com{{/i}}</a>
125
126
127
      </address>
    </div>
    <div class="span4">
128
129
130
131
      <h3>{{_i}}Example abbreviations{{/i}}</h3>
      <p>{{_i}}Abbreviations are styled with uppercase text and a light dotted bottom border. They also have a help cursor on hover so users have extra indication something will be shown on hover.{{/i}}</p>
      <p>{{_i}}<abbr title="HyperText Markup Language">HTML</abbr> is the best thing since sliced bread.{{/i}}</p>
      <p>{{_i}}An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.{{/i}}</p>
132
133
134
135
136
    </div>
  </div>


  <!-- Blockquotes -->
137
  <h2>{{_i}}Blockquotes{{/i}}</h2>
138
139
140
  <table class="table table-bordered table-striped">
    <thead>
      <tr>
141
142
143
        <th>{{_i}}Element{{/i}}</th>
        <th>{{_i}}Usage{{/i}}</th>
        <th>{{_i}}Optional{{/i}}</th>
144
145
146
147
148
149
150
151
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>
          <code>&lt;blockquote&gt;</code>
        </td>
        <td>
152
          {{_i}}Block-level element for quoting content from another source{{/i}}
153
154
        </td>
        <td>
155
156
          <p>{{_i}}Add <code>cite</code> attribute for source URL{{/i}}</p>
          {{_i}}Use <code>.pull-left</code> and <code>.pull-right</code> classes for floated options{{/i}}
157
158
159
160
161
162
163
        </td>
      </tr>
      <tr>
        <td>
          <code>&lt;small&gt;</code>
        </td>
        <td>
164
          {{_i}}Optional element for adding a user-facing citation, typically an author with title of work{{/i}}
165
166
        </td>
        <td>
167
          {{_i}}Place the <code>&lt;cite&gt;</code> around the title or name of source{{/i}}
168
169
170
171
172
173
        </td>
      </tr>
    </tbody>
  </table>
  <div class="row">
    <div class="span4">
174
175
      <p>{{_i}}To include a blockquote, 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>.{{/i}}</p>
      <p>{{_i}}Include an optional <code>&lt;small&gt;</code> element to cite your source and you'll get an em dash <code>&amp;mdash;</code> before it for styling purposes.{{/i}}</p>
176
177
178
179
180
    </div>
    <div class="span8">
<pre class="prettyprint linenums">
&lt;blockquote&gt;
  &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.&lt;/p&gt;
181
  &lt;small&gt;{{_i}}Someone famous{{/i}}&lt;/small&gt;
182
183
184
185
186
&lt;/blockquote&gt;
</pre>
    </div>
  </div><!--/row-->

187
  <h3>{{_i}}Example blockquotes{{/i}}</h3>
188
189
  <div class="row">
    <div class="span6">
190
      <p>{{_i}}Default blockquotes are styled as such:{{/i}}</p>
191
192
      <blockquote>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
193
        <small>{{_i}}Someone famous in <cite title="">Body of work</cite>{{/i}}</small>
194
195
196
      </blockquote>
    </div>
    <div class="span6">
197
      <p>{{_i}}To float your blockquote to the right, add <code>class="pull-right"</code>:{{/i}}</p>
198
199
      <blockquote class="pull-right">
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
200
        <small>{{_i}}Someone famous in <cite title="">Body of work</cite>{{/i}}</small>
201
202
203
204
205
206
      </blockquote>
    </div>
  </div>


  <!-- Lists -->
207
  <h2>{{_i}}Lists{{/i}}</h2>
208
209
  <div class="row">
    <div class="span3">
210
      <h4>{{_i}}Unordered{{/i}}</h4>
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
      <p><code>&lt;ul&gt;</code></p>
      <ul>
        <li>Lorem ipsum dolor sit amet</li>
        <li>Consectetur adipiscing elit</li>
        <li>Integer molestie lorem at massa</li>
        <li>Facilisis in pretium nisl aliquet</li>
        <li>Nulla volutpat aliquam velit
          <ul>
            <li>Phasellus iaculis neque</li>
            <li>Purus sodales ultricies</li>
            <li>Vestibulum laoreet porttitor sem</li>
            <li>Ac tristique libero volutpat at</li>
          </ul>
        </li>
        <li>Faucibus porta lacus fringilla vel</li>
        <li>Aenean sit amet erat nunc</li>
        <li>Eget porttitor lorem</li>
      </ul>
    </div>
    <div class="span3">
231
      <h4>{{_i}}Unstyled{{/i}}</h4>
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
      <p><code>&lt;ul class="unstyled"&gt;</code></p>
      <ul class="unstyled">
        <li>Lorem ipsum dolor sit amet</li>
        <li>Consectetur adipiscing elit</li>
        <li>Integer molestie lorem at massa</li>
        <li>Facilisis in pretium nisl aliquet</li>
        <li>Nulla volutpat aliquam velit
          <ul>
            <li>Phasellus iaculis neque</li>
            <li>Purus sodales ultricies</li>
            <li>Vestibulum laoreet porttitor sem</li>
            <li>Ac tristique libero volutpat at</li>
          </ul>
        </li>
        <li>Faucibus porta lacus fringilla vel</li>
        <li>Aenean sit amet erat nunc</li>
        <li>Eget porttitor lorem</li>
      </ul>
    </div>
    <div class="span3">
252
      <h4>{{_i}}Ordered{{/i}}</h4>
253
254
255
256
257
258
259
260
261
262
263
264
265
      <p><code>&lt;ol&gt;</code></p>
      <ol>
        <li>Lorem ipsum dolor sit amet</li>
        <li>Consectetur adipiscing elit</li>
        <li>Integer molestie lorem at massa</li>
        <li>Facilisis in pretium nisl aliquet</li>
        <li>Nulla volutpat aliquam velit</li>
        <li>Faucibus porta lacus fringilla vel</li>
        <li>Aenean sit amet erat nunc</li>
        <li>Eget porttitor lorem</li>
      </ol>
    </div>
    <div class="span3">
266
      <h4>{{_i}}Description{{/i}}</h4>
267
268
      <p><code>&lt;dl&gt;</code></p>
      <dl>
269
270
        <dt>{{_i}}Description lists{{/i}}</dt>
        <dd>{{_i}}A description list is perfect for defining terms.{{/i}}</dd>
271
272
273
274
275
276
277
278
279
280
281
282
        <dt>Euismod</dt>
        <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
        <dd>Donec id elit non mi porta gravida at eget metus.</dd>
        <dt>Malesuada porta</dt>
        <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
      </dl>
    </div>
  </div><!-- /row -->


  <!-- Code -->

283
  <h2>{{_i}}Code <small>Inline and block</small>{{/i}}</h2>
284
285
286
  <table class="table table-bordered table-striped">
    <thead>
      <tr>
287
288
        <th style="width: 190px;">{{_i}}Element{{/i}}</th>
        <th>{{_i}}Result{{/i}}</th>
289
290
291
292
293
      </tr>
    </thead>
    <tbody>
      <tr>
        <td><code>&lt;code&gt;</code></td>
294
        <td>{{_i}}In a line of text like this, your wrapped code will look like this <code>&lt;html&gt;</code> element.{{/i}}</td>
295
296
297
298
299
      </tr>
      <tr>
        <td><code>&lt;pre&gt;</code></td>
        <td>
<pre>&lt;div&gt;
300
301
  &lt;h1&gt;{{_i}}Heading{{/i}}&lt;/h1&gt;
  &lt;p&gt;{{_i}}Something right here…{{/i}}&lt;/p&gt;
302
&lt;/div&gt;</pre>
303
          <p>{{_i}}<strong>Note:</strong> Be sure to keep code within <code>&lt;pre&gt;</code> tags as close to the left as possible; it will render all tabs.{{/i}}</p>
304
305
306
307
308
        </td>
      </tr>
      <tr>
        <td><code>&lt;pre class="prettyprint"&gt;</code></td>
        <td>
309
          <p>{{_i}}Using the google-code-prettify library, you're blocks of code get a slightly different visual style and automatic syntax highlighting. You can also add an additional class to add line numbers.{{/i}}</p>
310
<pre class="prettyprint">&lt;div&gt;
311
312
  &lt;h1&gt;{{_i}}Heading{{/i}}&lt;/h1&gt;
  &lt;p&gt;{{_i}}Something right here…{{/i}}&lt;/p&gt;
313
314
&lt;/div&gt;</pre>
<pre class="prettyprint linenums">&lt;div&gt;
315
316
  &lt;h1&gt;{{_i}}Heading{{/i}}&lt;/h1&gt;
  &lt;p&gt;{{_i}}Something right here…{{/i}}&lt;/p&gt;
317
&lt;/div&gt;</pre>
318
          <p>{{_i}}<a href="http://code.google.com/p/google-code-prettify/">Download google-code-prettify</a> and view the readme for <a href="http://google-code-prettify.googlecode.com/svn/trunk/README.html">how to use</a>.{{/i}}</p>
319
320
321
322
323
324
        </td>
      </tr>
    </tbody>
  </table>

  <!-- Labels -->
325
  <h2>{{_i}}Inline labels <small>for special attention</small>{{/i}}</h2>
326
327
328
  <table class="table table-bordered table-striped">
    <thead>
      <tr>
329
330
        <th style="width: 190px;">{{_i}}Labels{{/i}}</th>
        <th>{{_i}}Markup{{/i}}</th>
331
332
333
334
335
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>
336
          <span class="label">{{_i}}Default{{/i}}</span>
337
338
        </td>
        <td>
339
          <code>&lt;span class="label"&gt;{{_i}}Default{{/i}}&lt;/span&gt;</code>
340
341
342
343
        </td>
      </tr>
      <tr>
        <td>
344
          <span class="label success">{{_i}}New{{/i}}</span>
345
346
        </td>
        <td>
347
          <code>&lt;span class="label success"&gt;{{/_i}}New{{/i}}&lt;/span&gt;</code>
348
349
350
351
        </td>
      </tr>
      <tr>
        <td>
352
          <span class="label warning">{{_i}}Warning{{/i}}</span>
353
354
        </td>
        <td>
355
          <code>&lt;span class="label warning"&gt;{{_i}}Warning{{/i}}&lt;/span&gt;</code>
356
357
358
359
        </td>
      </tr>
      <tr>
        <td>
360
          <span class="label important">{{_i}}Important{{/i}}</span>
361
362
        </td>
        <td>
363
          <code>&lt;span class="label important"&gt;{{_i}}Important{{/i}}&lt;/span&gt;</code>
364
365
366
367
        </td>
      </tr>
      <tr>
        <td>
368
          <span class="label notice">{{_i}}Notice{{/i}}</span>
369
370
        </td>
        <td>
371
          <code>&lt;span class="label notice"&gt;{{_i}}Notice{{/i}}&lt;/span&gt;</code>
372
373
374
375
376
377
378
379
380
381
382
383
384
        </td>
      </tr>
    </tbody>
  </table>

</section>



<!-- Tables
================================================== -->
<section id="tables">
  <div class="page-header">
385
    <h1>{{_i}}Tables <small>For, you guessed it, tabular data</small>{{/i}}</h1>
386
387
  </div>

388
  <h2>{{_i}}Table markup{{/i}}</h2>
389
390
391
392
393
  <div class="row">
    <div class="span8">
      <table class="table table-bordered table-striped">
        <thead>
          <tr>
394
395
            <th>{{_i}}Tag{{/i}}</th>
            <th>{{_i}}Description{{/i}}</th>
396
397
398
399
400
401
402
403
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>
              <code>&lt;table&gt;</code>
            </td>
            <td>
404
              {{_i}}Wrapping element for displaying data in a tabular format{{/i}}
405
406
407
408
409
410
411
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;thead&gt;</code>
            </td>
            <td>
412
              {{_i}}Container element for table header rows (<code>&lt;tr&gt;</code>) to label table columns{{/i}}
413
414
415
416
417
418
419
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;tbody&gt;</code>
            </td>
            <td>
420
              {{_i}}Container element for table rows (<code>&lt;tr&gt;</code>) in the body of the table{{/i}}
421
422
423
424
425
426
427
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;tr&gt;</code>
            </td>
            <td>
428
              {{_i}}Container element for a set of table cells (<code>&lt;td&gt;</code> or <code>&lt;th&gt;</code>) that appears on a single row{{/i}}
429
430
431
432
433
434
435
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;td&gt;</code>
            </td>
            <td>
436
              {{_i}}Default table cell{{/i}}
437
438
439
440
441
442
443
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;th&gt;</code>
            </td>
            <td>
444
445
              {{_i}}Special table cell for column (or row, depending on scope and placement) labels{{/i}}<br>
              {{_i}}Must be used within a <code>&lt;thead&gt;</code>{{/i}}
446
447
448
449
450
451
452
            </td>
          </tr>
          <tr>
            <td>
              <code>&lt;caption&gt;</code>
            </td>
            <td>
453
              {{_i}}Description or summary of what the table holds, especially useful for screen readers{{/i}}
454
455
456
457
458
459
460
461
462
463
            </td>
          </tr>
        </tbody>
      </table>
    </div>
    <div class="span4">
<pre class="prettyprint linenums">
&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
464
465
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;&lt;/th&gt;
466
467
468
469
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
470
471
      &lt;td&gt;&lt;/td&gt;
      &lt;td&gt;&lt;/td&gt;
472
473
474
475
476
477
478
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
</pre>
    </div>
  </div>

479
  <h2>{{_i}}Table options{{/i}}</h2>
480
481
482
  <table class="table table-bordered table-striped">
  <thead>
      <tr>
483
484
485
        <th>{{_i}}Name{{/i}}</th>
        <th>{{_i}}Class{{/i}}</th>
        <th>{{_i}}Description{{/i}}</th>
486
487
488
489
      </tr>
    </thead>
    <tbody>
      <tr>
490
491
492
        <td>{{_i}}Default{{/i}}</td>
        <td class="muted">{{_i}}None{{/i}}</td>
        <td>{{_i}}No styles, just columns and rows{{/i}}</td>
493
494
      </tr>
      <tr>
495
        <td>{{_i}}Basic{{/i}}</td>
496
497
498
        <td>
          <code>.table</code>
        </td>
499
        <td>{{_i}}Only horizontal lines between rows{{/i}}</td>
500
501
      </tr>
      <tr>
502
        <td>{{_i}}Bordered{{/i}}</td>
503
504
505
        <td>
          <code>.table-bordered</code>
        </td>
506
        <td>{{_i}}Rounds corners and adds outter border{{/i}}</td>
507
508
      </tr>
      <tr>
509
        <td>{{_i}}Zebra-stripe{{/i}}</td>
510
511
512
        <td>
          <code>.table-striped</code>
        </td>
513
        <td>{{_i}}Adds light gray background color to odd rows (1, 3, 5, etc){{/i}}</td>
514
515
      </tr>
      <tr>
516
        <td>{{_i}}Condensed{{/i}}</td>
517
518
519
        <td>
          <code>.table-condensed</code>
        </td>
520
        <td>{{_i}}Cuts vertical padding in half, from 8px to 4px, within all <code>td</code> and <code>th</code> elements{{/i}}</td>
521
522
523
524
525
      </tr>
    </tbody>
  </table>


526
  <h2>{{_i}}Example tables{{/i}}</h2>
527

528
  <h3>1. {{_i}}Default table styles{{/i}}</h3>
529
530
  <div class="row">
    <div class="span4">
531
      <p>{{_i}}Tables are automatically styled with only a few borders to ensure readability and maintain structure. With 2.0, the <code>.table</code> class is required.{{/i}}</p>
532
533
<pre class="prettyprint linenums">
&lt;table class="table"&gt;
534

535
536
537
538
539
540
541
&lt;/table&gt;</pre>
    </div>
    <div class="span8">
      <table class="table">
        <thead>
          <tr>
            <th>#</th>
542
543
544
            <th>{{_i}}First Name{{/i}}</th>
            <th>{{_i}}Last Name{{/i}}</th>
            <th>{{_i}}Language{{/i}}</th>
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>


572
  <h3>2. {{_i}}Striped table{{/i}}</h3>
573
574
  <div class="row">
    <div class="span4">
575
576
      <p>{{_i}}Get a little fancy with your tables by adding zebra-striping&mdash;just add the <code>.table-striped</code> class.{{/i}}</p>
      <p class="muted">{{_i}}<strong>Note:</strong> Sprited tables use the <code>:nth-child</code> CSS selector and is not available in IE7-IE8.{{/i}}</p>
577
578
<pre class="prettyprint linenums" style="margin-bottom: 18px;">
&lt;table class="table table-striped"&gt;
579

580
581
582
583
584
585
586
&lt;/table&gt;</pre>
    </div>
    <div class="span8">
      <table class="table table-striped">
        <thead>
          <tr>
            <th>#</th>
587
588
589
            <th>{{_i}}First Name{{/i}}</th>
            <th>{{_i}}Last Name{{/i}}</th>
            <th>{{_i}}Language{{/i}}</th>
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>


617
  <h3>3. {{_i}}Bordered table{{/i}}</h3>
618
619
  <div class="row">
    <div class="span4">
620
      <p>{{_i}}Add borders around the entire table and rounded corners for aesthetic purposes.{{/i}}</p>
621
622
<pre class="prettyprint linenums">
&lt;table class="table table-bordered"&gt;
623

624
625
626
627
628
629
630
&lt;/table&gt;</pre>
    </div>
    <div class="span8">
      <table class="table table-bordered">
        <thead>
          <tr>
            <th>#</th>
631
632
633
            <th>{{_i}}First Name{{/i}}</th>
            <th>{{_i}}Last Name{{/i}}</th>
            <th>{{_i}}Language{{/i}}</th>
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td colspan="2">Mark Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td rowspan="2">Javascript</td>
          </tr>
          </tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Brosef</td>
            <td>Stalin</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>


665
  <h3>4. {{_i}}Condensed table{{/i}}</h3>
666
667
  <div class="row">
    <div class="span4">
668
      <p>{{_i}}Make your tables more compact by adding the <code>.table-condensed</code> class to cut table cell padding in half (from 8px to 4px).{{/i}}</p>
669
670
<pre class="prettyprint linenums" style="margin-bottom: 18px;">
&lt;table class="table table-condensed"&gt;
671

672
673
674
675
676
677
678
&lt;/table&gt;</pre>
    </div>
    <div class="span8">
      <table class="table table-condensed">
        <thead>
          <tr>
            <th>#</th>
679
680
681
            <th>{{_i}}First Name{{/i}}</th>
            <th>{{_i}}Last Name{{/i}}</th>
            <th>{{_i}}Language{{/i}}</th>
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>



710
  <h3>5. {{_i}}Striped table w/ TableSorter.js{{/i}}</h3>
711
712
  <div class="row">
    <div class="span4">
713
      <p>{{_i}}Include the <a href="http://jquery.com">jQuery</a> <a href="http://tablesorter.com/docs/">Tablesorter</a> plugin and automatically get clear styles for sorted columns.{{/i}}</p>
714
715
716
717
718
719
720
721
722
723
724
<pre class="prettyprint linenums">
&lt;script src="jquery.tablesorter.js"&gt;&lt;/script&gt;
&lt;script &gt;
  $(function() {
    $("table#sortTableExample")
    .tablesorter({
      sortList: [[1,0]]
    });
  });
&lt;/script&gt;
&lt;table class="table table-striped"&gt;
725

726
727
728
729
730
731
732
&lt;/table&gt;</pre>
    </div>
    <div class="span8">
      <table class="table table-striped tablesorter-example">
        <thead>
          <tr>
            <th>#</th>
733
734
735
            <th class="yellow">{{_i}}First Name{{/i}}</th>
            <th class="blue">{{_i}}Last Name{{/i}}</th>
            <th class="green">{{_i}}Language{{/i}}</th>
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
          <tr>
            <td>4</td>
            <td>Brosef</td>
            <td>Stalin</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
765
      <p>{{_i}}Styles for the Tablesorter, zebra striping, borders, and condensing may all compound in any variation to fit your needs.{{/i}}</p>
766
767
768
769
      <table class="table table-striped table-bordered table-condensed tablesorter-example">
        <thead>
          <tr>
            <th>#</th>
770
771
772
            <th class="yellow">{{_i}}First Name{{/i}}</th>
            <th class="blue">{{_i}}Last Name{{/i}}</th>
            <th class="green">{{_i}}Language{{/i}}</th>
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Mark</td>
            <td>Otto</td>
            <td>CSS</td>
          </tr>
          <tr>
            <td>2</td>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>Javascript</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Stu</td>
            <td>Dent</td>
            <td>HTML</td>
          </tr>
          <tr>
            <td>4</td>
            <td>Brosef</td>
            <td>Stalin</td>
            <td>HTML</td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
</section>



<!-- Forms
================================================== -->
<section id="forms">
  <div class="page-header">
    <h1>Forms</h1>
  </div>
  <div class="row">
    <div class="span4">
      <h2>Flexible HTML and CSS</h2>
      <p>The best part about forms in Bootstrap is that all your inputs and controls look great no matter how you build them in your markup. No superfluous HTML is required, but we provide the patterns for those who require it.</p>
      <p>More complicated layouts come with succinct and scalable classes for easy styling and event binding, so you're covered at every step.</p>
    </div>
    <div class="span4">
      <h2>Four layouts included</h2>
      <p>Bootstrap comes with support for four types of form layouts:</p>
      <ul>
        <li>Vertical (default)</li>
        <li>Search</li>
        <li>Inline</li>
        <li>Horizontal</li>
      </ul>
      <p>Different types of form layouts require some changes to markup, but the controls themselves remain and behave the same.</p>
    </div>
    <div class="span4">
      <h2>Control states and more</h2>
      <p>Bootstrap's forms include styles for all the base form controls like input, textarea, and select you'd expect. But it also comes with a number of custom components like appended and prepended inputs and support for lists of checkboxes.</p>
      <p>States like error, warning, and success are included for each type of form control. Also included are styles for disabled controls.</p>
    </div>
  </div>

  <h2>Four types of forms</h2>
  <p>Bootstrap provides simple markup and styles for four styles of common web forms.</p>
  <table class="table table-bordered table-striped">
    <thead>
      <tr>
        <th>Name</th>
        <th>Class</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th>Vertical (default)</th>
        <td><code>.vertical-form</code> <span class="muted">(not required)</span></td>
        <td>Stacked, left-aligned labels over controls</td>
      </tr>
      <tr>
        <th>Horizontal</th>
        <td><code>.form-horizontal</code></td>
        <td>Float left, right-aligned labels on same line as controls</td>
      </tr>
      <tr>
        <th>Inline</th>
        <td><code>.form-inline</code></td>
        <td>Left-aligned label and inline-block controls for compact style</td>
      </tr>
      <tr>
        <th>Search</th>
        <td><code>.form-search</code></td>
        <td>Extra-rounded text input for a typical search aesthetic</td>
      </tr>
    </tbody>
  </table>


  <h2>Example forms <small>using just form controls, no extra markup</small></h2>
  <div class="row">
    <div class="span4">
      <h3>Basic form</h3>
      <p>With v2.0, we have lighter and smarter defaults for form styles. No extra markup, just form controls.</p>
      <form class="well">
        <label>Label name</label>
        <input type="text" class="span3" placeholder="Type something...">
        <label class="checkbox">
          <input type="checkbox"> Check me out
        </label>
        <button type="submit" class="btn">Submit</button>
      </form>
    </div>
    <div class="span4">
      <h3>Search form</h3>
      <p>Reflecting default WebKit styles, just add <code>.form-search</code> for extra rounded search fields.</p>
      <form class="well form-search">
        <input type="text" class="input-medium search-query">
        <button type="submit" class="btn">Search</button>
      </form>
    </div>
    <div class="span4">
      <h3>Inline form</h3>
      <p>Inputs are block level to start. For <code>.form-inline</code> and <code>.form-horizontal</code>, we use inline-block.</p>
      <form class="well form-search">
        <input type="text" class="input-small" placeholder="Email">
        <input type="password" class="input-small" placeholder="Password">
        <button type="submit" class="btn">Go</button>
      </form>
    </div>
  </div><!-- /row -->

  <br>

  <h2>Horizontal forms</h2>
  <div class="row">
    <div class="span8">
      <form class="form-horizontal">
        <legend>Controls Bootstrap supports</legend>
        <fieldset class="control-group">
          <label class="control-label" for="input01">Text input</label>
          <div class="controls">
            <input type="text" class="xlarge" name="input01">
            <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="optionsCheckbox">Checkbox</label>
          <div class="controls">
            <label class="checkbox">
              <input type="checkbox" name="optionsCheckbox" value="option1">
              Option one is this and that&mdash;be sure to include why it’s great
            </label>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="select01">Select list</label>
          <div class="controls">
            <select name="select01">
              <option>1</option>
              <option>2</option>
              <option>3</option>
              <option>4</option>
              <option>5</option>
            </select>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="multiSelect">Multi-select</label>
          <div class="controls">
            <select multiple="multiple" name="multiSelect">
              <option>1</option>
              <option>2</option>
              <option>3</option>
              <option>4</option>
              <option>5</option>
            </select>
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="fileInput">File input</label>
          <div class="controls">
            <input class="input-file" id="fileInput" name="fileInput" type="file">
          </div>
        </fieldset>
        <fieldset class="control-group">
          <label class="control-label" for="textarea">Textarea</label>
          <div class="controls">
            <textarea class="input-xlarge" name="textarea" id="textarea" rows="3"></textarea>
          </div>
        </fieldset>
        <fieldset class="form-actions">
          <button type="submit" class="btn primary">Save changes</button>
          <button type="reset" class="btn">Cancel</button>
        </fieldset>
      </form>
    </div>
    <div class="span4">
      <div class="form-docs">
        <h3>What's included</h3>
        <p>Shown on the left are all the default form controls we support. Here's the bulleted list:</p>
        <ul>
          <li>text inputs (text, password, email, etc)</li>
          <li>checkbox</li>
          <li>radio</li>
          <li>select</li>
          <li>multiple select</li>
          <li>file input</li>
          <li>textarea</li>
        </ul>
        <hr>
        <h3>New defaults with v2.0</h3>
        <p>Up to v1.4, Bootstrap's default form styles used the horizontal layout. With Bootstrap 2, we removed that constraint to have smarter, more scalable defaults for any form.</p>
      </div>
    </div>
  </div>

  <br>

  <div class="row">
    <div class="span8">
      <form class="form-horizontal">
        <legend>Form control states</legend>
        <fieldset class="control-group">
          <label class="control-label" for="focusedInput">Focused input</label>
          <div class="controls">
            <input class="input-xlarge focused" id="focusedInput" name="focusedInput" type="text" value="This is focused...">
For faster browsing, not all history is shown. View entire blame