This repository has been archived by the owner on Apr 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-core.html
870 lines (828 loc) · 38.9 KB
/
css-core.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
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
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
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
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
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
765
766
767
768
769
770
771
772
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
<!--
Copyright 2014 Hippo B.V. (http://www.onehippo.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<h1>CSS Core <small>Typography, tables, forms and utilities</small></h1>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">
Headings
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<p>All HTML headings, <code><h1></code> through <code><h6></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>
<h1>h1. Bootstrap heading</h1>
<h2>h2. Bootstrap heading</h2>
<h3>h3. Bootstrap heading</h3>
<h4>h4. Bootstrap heading</h4>
<h5>h5. Bootstrap heading</h5>
<h6>h6. Bootstrap heading</h6>
</div>
<div class="col-sm-6">
<pre>
<h1>h1. Bootstrap heading</h1>
<h2>h2. Bootstrap heading</h2>
<h3>h3. Bootstrap heading</h3>
<h4>h4. Bootstrap heading</h4>
<h5>h5. Bootstrap heading</h5>
<h6>h6. Bootstrap heading</h6>
</pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<p>Create lighter, secondary text in any heading with a generic <code><small></code> tag or the <code>.small</code> class.</p>
<h1>h1. Bootstrap heading <small>Secondary text</small></h1>
</div>
<div class="col-sm-6">
<pre>
<h1>h1. Bootstrap heading <small>Secondary text</small></h1>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">
Body Text
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<p class="lead">This is a leading paragraph, bigger then usual</p>
<p>This text has <mark>a highlighted</mark> piece.</p>
<p><del>This text is deleted</del>, differend semantics then strikethrough</p>
<p><s>This text is strikethrough text</s>, differend semantics then deleted</p>
<p><ins>This text is inserted</ins>, different semantics then underlined</p>
<p><u>This text is underlined</u>, different semantics then inserted</p>
<p><small>This text is small</small></p>
<p><strong>This text is bold</strong></p>
<p><em>This text is in italics</em></p>
<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
<p class="text-justify">Justified text.</p>
</div>
<div class="col-sm-6">
<pre>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<p class="lead">This is a leading paragraph, bigger then usual</p>
<p>This text has <mark>a highlighted</mark> piece.</p>
<p><del>This text is deleted</del>, differend semantics then strikethrough</p>
<p><s>This text is strikethrough text</s>, differend semantics then deleted</p>
<p><ins>This text is inserted</ins>, different semantics then underlined</p>
<p><u>This text is underlined</u>, different semantics then inserted</p>
<p><small>This text is small</small></p>
<p><strong>This text is bold</strong></p>
<p><em>This text is in italics</em></p>
<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
<p class="text-justify">Justified text.</p>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">Abbreviations</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<p>This is a line with an <abbr title="abbreviation">abbr</abbr> in it.</p>
</div>
<div class="col-sm-6">
<pre>
<p>This is a line with an <abbr title="abbreviation">abbr</abbr> in it.</p>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">
BlockQuote & Address
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
<blockquote class="pull-right">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>
Someone famous
<cite title="Source Title">Source Title</cite>
</small>
</blockquote>
</div>
<div class="col-sm-6">
<pre>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</blockquote>
<blockquote class="pull-right">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<small>
Someone famous
<cite title="Source Title">Source Title</cite>
</small>
</blockquote>
</pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<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>
<strong>Full Name</strong>
<br>
<a href="mailto:#">[email protected]</a>
</address>
</div>
<div class="col-sm-6">
<pre>
<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>
<strong>Full Name</strong><br>
<a href="mailto:#">[email protected]</a>
</address>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">
Lists
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<ul>
<li>Unordered List Item</li>
<li>
<small>List Item in small tag</small>
</li>
<li>
<b>List Item in bold tag</b>
</li>
<li>
<i>List Item in italics tag</i>
</li>
<li>
<ul class="list-unstyled">
<li>
<i class="fa fa-caret-right blue"></i>
Nested List Item
</li>
<li>
<i class="fa fa-caret-right blue"></i>
Nested List Item
</li>
<li>
<i class="fa fa-caret-right blue"></i>
Nested List Item
</li>
</ul>
</li>
<li>Unordered List Item which is a longer item and may break into more lines.</li>
<li>
<strong>List Item in strong tag</strong>
</li>
<li>
<em>List Item in emphasis tag</em>
</li>
</ul>
<ol>
<li>Ordered List Item</li>
<li class="text-primary">.text-primary Ordered List Item</li>
<li class="text-danger">.text-danger Ordered List Item</li>
<li class="text-success">
<b>.text-success</b>
Ordered List Item
</li>
<li class="text-warning">.text-warning Ordered List Item</li>
<li class="text-muted">.text-muted Ordered List Item</li>
</ol>
<ul class="fa-ul">
<li><i class="fa-li fa fa-check-square"></i>List icons</li>
<li><i class="fa-li fa fa-check-square"></i>can be used</li>
<li><i class="fa-li fa fa-spinner"></i>as bullets</li>
<li><i class="fa-li fa fa-square"></i>in lists</li>
</ul>
</div>
<div class="col-sm-6">
<pre>
<ul>
<li>Unordered List Item</li>
<li>
<small>List Item in small tag</small>
</li>
<li><b>List Item in bold tag</b></li>
<li><i>List Item in italics tag</i></li>
<li>
<ul class="list-unstyled">
<li><i class="fa fa-caret-right blue"></i>Nested List Item</li>
<li>
<i class="fa fa-caret-right blue"></i>
Nested List Item
</li>
<li>
<i class="fa fa-caret-right blue"></i>
Nested List Item
</li>
</ul>
</li>
<li>Unordered List Item which is a longer item and may break into more lines.</li>
<li>
<strong>List Item in strong tag</strong>
</li>
<li>
<em>List Item in emphasis tag</em>
</li>
</ul>
<ol>
<li>Ordered List Item</li>
<li class="text-primary">.text-primary Ordered List Item</li>
<li class="text-danger">.text-danger Ordered List Item</li>
<li class="text-success">
<b>.text-success</b>
Ordered List Item
</li>
<li class="text-warning">.text-warning Ordered List Item</li>
<li class="text-muted">.text-muted Ordered List Item</li>
</ol>
<ul class="fa-ul">
<li><i class="fa-li fa fa-check-square"></i>List icons</li>
<li><i class="fa-li fa fa-check-square"></i>can be used</li>
<li><i class="fa-li fa fa-spinner"></i>as bullets</li>
<li><i class="fa-li fa fa-square"></i>in lists</li>
</ul>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">
Definition lists
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<h4>Definition list normal</h4>
<dl>
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<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>
<dt>Felis euismod semper eget lacinia</dt>
<dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
</dl>
</div>
<div class="col-sm-6">
<pre>
<dl>
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<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>
<dt>Felis euismod semper eget lacinia</dt>
<dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
</dl>
</pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<h4>Definition list horizontal</h4>
<dl class="dl-horizontal">
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<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>
<dt>Felis euismod semper eget lacinia</dt>
<dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
</dl>
</div>
<div class="col-sm-6">
<pre>
<dl class="dl-horizontal">
<dt>Description lists</dt>
<dd>A description list is perfect for defining terms.</dd>
<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>
<dt>Felis euismod semper eget lacinia</dt>
<dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
</dl>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">Tables</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<h4>Table Default</h4>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-6">
<pre>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<h4>Table Striped</h4>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-6">
<pre>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<h4>Table Hover</h4>
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-6">
<pre>
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">Forms</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<form>
<fieldset>
<div class="form-group">
<label for="exampleInputEmail">Email address</label>
<input type="text" class="form-control" id="exampleInputEmail" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputPassword">Password</label>
<input type="password" class="form-control" id="exampleInputPassword" placeholder="Password">
</div>
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
<div class="form-group has-feedback has-success">
<label for="exampleInputAddon">Input addon</label>
<div class="input-group">
<span class="input-group-addon">www.onehippo.com</span>
<input type="text" id="exampleInputAddon" class="form-control form-control-addon"
placeholder="" value="" data-tooltip="" data-original-title="" title="">
</div>
<span class="fa fa-check form-control-feedback"></span>
</div>
<div class="checkbox">
<label>
<input type="checkbox">Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</fieldset>
</form>
</div>
<div class="col-sm-6">
<pre>
<form>
<fieldset>
<div class="form-group">
<label for="exampleInputEmail">Email address</label>
<input type="text" class="form-control" id="exampleInputEmail" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputPassword">Password</label>
<input type="password" class="form-control" id="exampleInputPassword" placeholder="Password">
</div>
<div class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" id="exampleInputFile">
<p class="help-block">Example block-level help text here.</p>
</div>
<div class="form-group has-feedback has-success">
<label for="exampleInputAddon">Input addon</label>
<div class="input-group">
<span class="input-group-addon">www.onehippo.com</span>
<input type="text" id="exampleInputAddon" class="form-control form-control-addon"
placeholder="" value="" data-tooltip="" data-original-title="" title="">
</div>
<span class="fa fa-check form-control-feedback"></span>
</div>
<div class="checkbox">
<label>
<input type="checkbox">Check me out</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</fieldset>
</form>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">Buttons</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<p>
<button type="button" class="btn btn-default">Default</button>
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-link">Link</button>
</p>
<p>
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-default btn-lg">Large button</button>
</p>
<p>
<button type="button" class="btn btn-primary">Default button</button>
<button type="button" class="btn btn-default">Default button</button>
</p>
<p>
<button type="button" class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-default btn-sm">Small button</button>
</p>
<p>
<button type="button" class="btn btn-primary btn-xs">Extra small button</button>
<button type="button" class="btn btn-default btn-xs">Extra small button</button>
</p>
<div class="row">
<div class="col-xs-6">
<p>
<button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
</p>
</div>
</div>
<p>
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button disabled</button>
</p>
</div>
<div class="col-sm-6">
<pre>
<button type="button" class="btn btn-default">Default</button>
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-link">Link</button>
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-primary">Default button</button>
<button type="button" class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-primary btn-xs">Extra small button</button>
<button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button disabled</button>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">Images</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<p>Images 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>
</div>
<div class="col-sm-6">
<pre>
<img src="..." class="img-responsive" alt="Responsive image">
</pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<img class="img-rounded" alt="140x140" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48cmVjdCB3aWR0aD0iMTQwIiBoZWlnaHQ9IjE0MCIgZmlsbD0iI2VlZSIvPjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjcwIiB5PSI3MCIgc3R5bGU9ImZpbGw6I2FhYTtmb250LXdlaWdodDpib2xkO2ZvbnQtc2l6ZToxMnB4O2ZvbnQtZmFtaWx5OkFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmO2RvbWluYW50LWJhc2VsaW5lOmNlbnRyYWwiPjE0MHgxNDA8L3RleHQ+PC9zdmc+" style="width: 140px; height: 140px;">
<img class="img-circle" alt="140x140" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48cmVjdCB3aWR0aD0iMTQwIiBoZWlnaHQ9IjE0MCIgZmlsbD0iI2VlZSIvPjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjcwIiB5PSI3MCIgc3R5bGU9ImZpbGw6I2FhYTtmb250LXdlaWdodDpib2xkO2ZvbnQtc2l6ZToxMnB4O2ZvbnQtZmFtaWx5OkFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmO2RvbWluYW50LWJhc2VsaW5lOmNlbnRyYWwiPjE0MHgxNDA8L3RleHQ+PC9zdmc+" style="width: 140px; height: 140px;">
<img class="img-thumbnail" alt="140x140" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48cmVjdCB3aWR0aD0iMTQwIiBoZWlnaHQ9IjE0MCIgZmlsbD0iI2VlZSIvPjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjcwIiB5PSI3MCIgc3R5bGU9ImZpbGw6I2FhYTtmb250LXdlaWdodDpib2xkO2ZvbnQtc2l6ZToxMnB4O2ZvbnQtZmFtaWx5OkFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmO2RvbWluYW50LWJhc2VsaW5lOmNlbnRyYWwiPjE0MHgxNDA8L3RleHQ+PC9zdmc+" style="width: 140px; height: 140px;">
</div>
<div class="col-sm-6">
<pre>
<img src="..." alt="..." class="img-rounded">
<img src="..." alt="..." class="img-circle">
<img src="..." alt="..." class="img-thumbnail">
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">Contextual Colors & Backgrounds</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<p class="text-muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p>
<p class="text-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
<p class="text-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
<p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
<p class="text-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
</div>
<div class="col-sm-6">
<pre>
<p class="text-muted">...</p>
<p class="text-primary">...</p>
<p class="text-success">...</p>
<p class="text-info">...</p>
<p class="text-warning">...</p>
<p class="text-danger">...</p>
</pre>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<p style="padding: 5px;" class="bg-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p style="padding: 5px;" class="bg-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
<p style="padding: 5px;" class="bg-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
<p style="padding: 5px;" class="bg-warning">Etiam porta sem malesuada magna mollis euismod.</p>
<p style="padding: 5px;" class="bg-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
</div>
<div class="col-sm-6">
<pre>
<p class="bg-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p class="bg-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
<p class="bg-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
<p class="bg-warning">Etiam porta sem malesuada magna mollis euismod.</p>
<p class="bg-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
</pre>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="panel panel-info">
<div class="panel-heading">Helper Classes and Responsive Utilities</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
For now see Bootstrap documentation on <a href="http://getbootstrap.com/css/#helper-classes">Helper Classes</a> and <a href="http://getbootstrap.com/css/#responsive-utilities">Responsive Utilities</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>