-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathboostraptldr.html
1639 lines (1477 loc) · 60 KB
/
boostraptldr.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
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
---
layout: default
permalink: /bootstraptldr
---
<!-- Fixed navbar --><nav class="navbar navbar-default navbar-fixed-top bg-faded">
<button class="navbar-toggler hidden-sm-up" type="button" data-toggle="collapse" data-target="#exCollapsingNavbar2">
☰
</button>
<div class="collapse navbar-toggleable-xs" id="exCollapsingNavbar2">
<a class="navbar-brand" href="#">TLDR v4</a>
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#css">CSS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#components">Components</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#javascript">JS</a>
</li>
</ul>
</div>
</nav>
<div class="container" style="margin-top: 80px">
<div class="row">
<div class="col-md-12">
<h1 id="css">CSS</h1>
<h2 id="typography">Typography</h2>
<!-- Headings -->
<div class="media js-html-inspector" data-replace-target="> div">
<div class="media-left media-middle">
<h1>
h1
<small>small</small>
</h1>
</div>
<div class="media-left media-middle">
<div class="h2">
.h2
<small>small</small>
</div>
</div>
<div class="media-left media-middle">
<h3>
h3
<small>small</small>
</h3>
</div>
<div class="media-left media-middle">
<div class="h4">
.h4
<small>small</small>
</div>
</div>
<div class="media-left media-middle">
<h5>
h5
<small>small</small>
</h5>
</div>
<div class="media-left media-middle">
<div class="h6">
.h6
<small>small</small>
</div>
</div>
</div>
<div class="row js-html-inspector" data-replace-target="> div" data-remove-target="br">
<div class="col-sm-2 col-xs-4">
<!-- Lead body copy -->
<span class="lead">.lead</span><br>
<!-- Bold -->
<b>b (bold)</b><br>
<strong>strong</strong>
</div>
<div class="col-sm-2 col-xs-4">
<!-- Small text -->
<small>small</small>
<br>
<span class="small">.small</span>
</div>
<div class="col-sm-2 col-xs-4">
<!-- Italics -->
<em>em</em><br>
<i>i (italic)</i>
</div>
<!-- Inline text elements -->
<div class="col-sm-2 col-xs-4">
<!-- Deleted text -->
<del>del</del>
<br>
<!-- Strikethrough text -->
<s>s (strikethrough)</s><br>
<!-- Inserted text -->
<ins>ins</ins>
<br>
<!-- Underlined text -->
<u>u (underline)</u>
</div>
<div class="col-sm-2 col-xs-4">
<!-- Inline code -->
<code>code</code><br>
<!-- Variables -->
<var>var</var><br>
<!-- Sample output from a program -->
<samp>samp</samp>
</div>
<div class="col-sm-2 col-xs-4">
<!-- Marked text -->
<mark>mark</mark>
<br>
<!-- User input -->
<kbd>kbd</kbd>
</div>
</div><br>
<!-- Alignment classes -->
<div class="row js-html-inspector" data-replace-target="> div">
<div class="col-xs-4">
<p class="text-left">.text-left</p>
</div>
<div class="col-xs-4">
<p class="text-center">.text-center</p>
</div>
<div class="col-xs-4">
<p class="text-right">.text-right</p>
</div>
<div class="col-xs-12">
<div class="text-justify">.text-justify</div>
</div>
</div><br>
<!-- Transformation classes -->
<div class="js-html-inspector">
<span class="text-lowercase">.text-lowercase</span>
<span class="text-uppercase">.text-uppercase</span>
<span class="text-capitalize">.text-capitalize</span>
</div><br>
<!-- Abbreviations -->
<div class="js-html-inspector">
<abbr title="abbreviation">abbr</abbr>
<abbr class="initialism" title="abbreviation.initialism">
.initialism
</abbr>
</div><br>
<!-- Addresses -->
<div class="js-html-inspector">
<address>
<strong>address strong</strong><br>
address<br>
<a href="mailto:#">[email protected]</a>
</address>
</div>
<!-- Blockquotes -->
<div class="row">
<div class="col-sm-6 js-html-inspector">
<blockquote class="blockquote">
<p>blockquote p</p>
<footer class="blockquote-footer">
footer
<cite title="Cite">cite</cite>
</footer>
</blockquote>
</div>
<div class="col-sm-6 js-html-inspector">
<blockquote class="blockquote-reverse">
<p>blockquote-reverse p</p>
<footer class="blockquote-footer">
footer
<cite title="Cite">cite</cite>
</footer>
</blockquote>
</div>
</div>
<div class="row">
<!-- Unordered list -->
<div class="col-sm-4 js-html-inspector" data-remove-target="p:first">
<ul>
<li>li</li>
<li>
List item
<ul>
<li>ul li</li>
<li>List item</li>
</ul>
</li>
<li>List item</li>
</ul>
</div>
<!-- Ordered list -->
<div class="col-sm-4 js-html-inspector" data-remove-target="p:first">
<ol>
<li>List item</li>
<li>
List item
<ol>
<li>List item</li>
<li>List item</li>
</ol>
</li>
<li>List item</li>
</ol>
</div>
<!-- Unstyled list -->
<div class="col-sm-4 js-html-inspector" data-remove-target="p:first">
<ul class="list-unstyled">
<li>List item</li>
<li>
List item
<ul>
<li>List item</li>
<li>List item</li>
</ul>
</li>
<li>List item</li>
</ul>
</div>
</div>
<div class="row">
<!-- Inline list -->
<div class="col-sm-12 js-html-inspector" data-remove-target="p:first">
<ul class="list-inline">
<li class="list-inline-item">List item</li>
<li class="list-inline-item">List item</li>
<li class="list-inline-item">List item</li>
</ul>
</div>
</div>
<div class="row">
<!-- Description -->
<div class="col-xs-6 js-html-inspector" data-remove-target="p:first">
<dl>
<dt>dt</dt>
<dd>dd</dd>
<dt>Term</dt>
<dd>Description<br>Description</dd>
</dl>
</div>
<!-- Horizontal description -->
<div class="col-xs-6 js-html-inspector" data-remove-target="p:first">
<dl class="dl-horizontal">
<dt>Term</dt>
<dd>Description</dd>
<dt>Long term will be truncated</dt>
<dd>Description<br>Description</dd>
</dl>
</div>
</div>
<h2 id="tables">Tables</h2>
<!-- Basic example -->
<div class="js-html-inspector" data-remove-target="p:first">
<table class="table">
<thead>
<tr>
<th>thead tr th</th>
<th>th</th>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>tbody tr td</td>
<td>td</td>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<!-- Striped rows -->
<div class="col-sm-6 js-html-inspector" data-remove-target="p:first">
<table class="table table-striped">
<thead>
<tr>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
</div>
<!-- Bordered table -->
<div class="col-sm-6 js-html-inspector" data-remove-target="p:first">
<table class="table table-bordered">
<thead>
<tr>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<!-- Hover rows -->
<div class="col-sm-6 js-html-inspector" data-remove-target="p:first">
<table class="table table-hover">
<thead>
<tr>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
</div>
<!-- Condensed table -->
<div class="col-sm-6 js-html-inspector" data-remove-target="p:first">
<table class="table table-condensed">
<thead>
<tr>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Responsive tables and Contextual classes -->
<div class="js-html-inspector" data-remove-target="p:first">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Header</th>
<th>Header</th>
<th>Header</th>
<th>Header</th>
<th>Header</th>
</tr>
</thead>
<tbody>
<tr>
<td class="table-active">table-active</td>
<td class="table-success">table-success</td>
<td class="table-info">table-info</td>
<td class="table-warning">table-warning</td>
<td class="table-danger">table-danger</td>
</tr>
<tr class="table-active">
<td>tr.table-active td</td>
<td colspan="4">
Applies the hover color to a particular row or cell
</td>
</tr>
<tr class="table-success">
<td>tr.table-success td</td>
<td colspan="4">
Indicates a successful or positive action
</td>
</tr>
<tr class="table-info">
<td>tr.table-info td</td>
<td colspan="4">
Indicates a neutral informative change or action
</td>
</tr>
<tr class="table-warning">
<td>tr.table-warning td</td>
<td colspan="4">
Indicates a warning that might need attention
</td>
</tr>
<tr class="table-danger">
<td>tr.table-danger td</td>
<td colspan="4">
Indicates a dangerous or potentially negative action
</td>
</tr>
</tbody>
</table>
</div>
</div>
<h2 id="forms">Forms</h2>
<!-- Basic example -->
<div class="js-html-inspector" data-remove-target="p:first">
<form>
<fieldset class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
<small class="text-muted">We'll never share your email with anyone else.</small>
</fieldset>
<fieldset class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</fieldset>
<fieldset class="form-group">
<label for="exampleSelect1">Example select</label>
<select class="form-control" id="exampleSelect1">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</fieldset>
<fieldset class="form-group">
<label for="exampleSelect2">Example multiple select</label>
<select multiple class="form-control" id="exampleSelect2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</fieldset>
<fieldset class="form-group">
<label for="exampleTextarea">Example textarea</label>
<textarea class="form-control" id="exampleTextarea" rows="3"></textarea>
</fieldset>
<fieldset class="form-group">
<label for="exampleInputFile">File input</label>
<input type="file" class="form-control-file" id="exampleInputFile">
<small class="text-muted">This is some placeholder block-level help text for the above input. It's a bit
lighter and easily wraps to a new line.
</small>
</fieldset>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Option one is this and that—be sure to include why it's great
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Option two can be something else and selecting it will deselect option one
</label>
</div>
<div class="radio disabled">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios3" value="option3" disabled>
Option three is disabled
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<!-- Inline form -->
<div class="js-html-inspector" data-remove-target="p:first">
<form class="form-inline">
<div class="form-group">
<label for="exampleInputName2">Name</label>
<input type="text" class="form-control" id="exampleInputName2" placeholder="Jane Doe">
</div>
<div class="form-group">
<label for="exampleInputEmail2">Email</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="[email protected]">
</div>
<button type="submit" class="btn btn-primary">Send invitation</button>
</form>
</div>
<br>
<!-- Horizontal form -->
<div class="js-html-inspector" data-remove-target='["p:not([class])","br"]'>
<form>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 form-control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group row">
<label for="inputPassword3" class="col-sm-2 form-control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2">Radios</label>
<div class="col-sm-10">
<div class="radio">
<label>
<input type="radio" name="gridRadios" id="gridRadios1" value="option1" checked>
Option one is this and that—be sure to include why it's great
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="gridRadios" id="gridRadios2" value="option2">
Option two can be something else and selecting it will deselect option one
</label>
</div>
<div class="radio disabled">
<label>
<input type="radio" name="gridRadios" id="gridRadios3" value="option3" disabled>
Option three is disabled
</label>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2">Checkbox</label>
<div class="col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-secondary">Sign in</button>
</div>
</div>
</form>
</div>
<!-- Validation states -->
<div class="js-html-inspector" data-remove-target="p:first">
<form class="form-horizontal">
<div class="form-group has-success">
<label class="form-control-label" for="inputSuccess1">Input with success</label>
<input type="text" class="form-control form-control-success" id="inputSuccess1">
</div>
<div class="form-group has-warning">
<label class="form-control-label" for="inputWarning1">Input with warning</label>
<input type="text" class="form-control form-control-warning" id="inputWarning1">
</div>
<div class="form-group has-danger">
<label class="form-control-label" for="inputDanger1">Input with danger</label>
<input type="text" class="form-control form-control-danger" id="inputDanger1">
</div>
<div class="checkbox has-success">
<label>
<input type="checkbox" id="checkboxSuccess" value="option1">
Checkbox with success
</label>
</div>
<div class="checkbox has-warning">
<label>
<input type="checkbox" id="checkboxWarning" value="option1">
Checkbox with warning
</label>
</div>
<div class="checkbox has-danger">
<label>
<input type="checkbox" id="checkboxDanger" value="option1">
Checkbox with danger
</label>
</div>
</form>
</div>
<h2 id="buttons">Buttons</h2>
<!-- Styled buttons -->
<p class="bse-buttons js-html-inspector">
<!-- Provides extra visual weight and identifies the primary action in a set of buttons -->
<button type="button" class="btn btn-primary">Primary</button>
<!-- Secondary, outline button -->
<button type="button" class="btn btn-secondary">Secondary</button>
<!-- Indicates a successful or positive action -->
<button type="button" class="btn btn-success">Success</button>
<!-- Contextual button for informational alert messages -->
<button type="button" class="btn btn-info">Info</button>
<!-- Indicates caution should be taken with this action -->
<button type="button" class="btn btn-warning">Warning</button>
<!-- Indicates a dangerous or potentially negative action -->
<button type="button" class="btn btn-danger">Danger</button>
<!-- Deemphasize a button by making it look like a link while maintaining button behavior -->
<button type="button" class="btn btn-link">Link</button>
<button type="button" class="btn btn-primary-outline">Primary</button>
<button type="button" class="btn btn-secondary-outline">Secondary</button>
<button type="button" class="btn btn-success-outline">Success</button>
<button type="button" class="btn btn-info-outline">Info</button>
<button type="button" class="btn btn-warning-outline">Warning</button>
<button type="button" class="btn btn-danger-outline">Danger</button>
</p>
<!-- Button sizes -->
<p class="bse-buttons js-html-inspector">
<button type="button" class="btn btn-primary btn-lg">Large button</button>
<button type="button" class="btn btn-secondary btn-lg">Large button</button>
<button type="button" class="btn btn-primary btn-sm">Small button</button>
<button type="button" class="btn btn-secondary btn-sm">Small button</button>
</p>
<!-- Block level buttons -->
<p class="js-html-inspector">
<button type="button" class="btn btn-primary btn-lg btn-block">Block level button</button>
<button type="button" class="btn btn-secondary btn-lg btn-block">Block level button</button>
</p>
<!-- Button tags -->
<p class="bse-buttons js-html-inspector">
<a class="btn btn-primary" href="#" role="button">Link</a>
<button class="btn btn-primary" type="submit">Button</button>
<input class="btn btn-primary" type="button" value="Input">
<input class="btn btn-primary" type="submit" value="Submit">
</p>
<p class="bse-buttons js-html-inspector">
<!-- Active state -->
<a href="#" class="btn btn-primary btn-lg active" role="button">Primary link</a>
<a href="#" class="btn btn-secondary btn-lg active" role="button">Link</a>
<!-- Disabled state -->
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<button type="button" class="btn btn-secondary btn-lg" disabled>Button</button>
</p>
<h2 id="images">Images</h2>
<div class="row bs-thumbnails js-html-inspector" data-remove-target="p" data-replace-target="> div">
<div class="col-sm-6">
<img class="img-rounded"
src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48cmVjdCB3aWR0aD0iMTQwIiBoZWlnaHQ9IjE0MCIgZmlsbD0iI2VlZSIvPjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjcwIiB5PSI3MCIgc3R5bGU9ImZpbGw6I2FhYTtmb250LXdlaWdodDpib2xkO2ZvbnQtc2l6ZToxMnB4O2ZvbnQtZmFtaWx5OkFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmO2RvbWluYW50LWJhc2VsaW5lOmNlbnRyYWwiPjE0MHgxNDA8L3RleHQ+PC9zdmc+"
alt=".img-rounded">
</div>
<div class="col-sm-6">
<img class="img-circle"
src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48cmVjdCB3aWR0aD0iMTQwIiBoZWlnaHQ9IjE0MCIgZmlsbD0iI2VlZSIvPjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjcwIiB5PSI3MCIgc3R5bGU9ImZpbGw6I2FhYTtmb250LXdlaWdodDpib2xkO2ZvbnQtc2l6ZToxMnB4O2ZvbnQtZmFtaWx5OkFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmO2RvbWluYW50LWJhc2VsaW5lOmNlbnRyYWwiPjE0MHgxNDA8L3RleHQ+PC9zdmc+"
alt=".img-circle">
</div>
<div class="col-sm-6">
<img class="img-thumbnail"
src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48cmVjdCB3aWR0aD0iMTQwIiBoZWlnaHQ9IjE0MCIgZmlsbD0iI2VlZSIvPjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjcwIiB5PSI3MCIgc3R5bGU9ImZpbGw6I2FhYTtmb250LXdlaWdodDpib2xkO2ZvbnQtc2l6ZToxMnB4O2ZvbnQtZmFtaWx5OkFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmO2RvbWluYW50LWJhc2VsaW5lOmNlbnRyYWwiPjE0MHgxNDA8L3RleHQ+PC9zdmc+"
alt=".img-thumbnail">
</div>
<div class="col-sm-6">
<img class="img-responsive"
src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj48cmVjdCB3aWR0aD0iMTQwIiBoZWlnaHQ9IjE0MCIgZmlsbD0iI2VlZSIvPjx0ZXh0IHRleHQtYW5jaG9yPSJtaWRkbGUiIHg9IjcwIiB5PSI3MCIgc3R5bGU9ImZpbGw6I2FhYTtmb250LXdlaWdodDpib2xkO2ZvbnQtc2l6ZToxMnB4O2ZvbnQtZmFtaWx5OkFyaWFsLEhlbHZldGljYSxzYW5zLXNlcmlmO2RvbWluYW50LWJhc2VsaW5lOmNlbnRyYWwiPjE0MHgxNDA8L3RleHQ+PC9zdmc+"
alt=".img-responsive">
</div>
</div>
<h2 id="helper-classes">Helper classes</h2>
<!-- Contextual colors -->
<p class="js-html-inspector">
<span class="text-muted">.text-muted</span>
<span class="text-primary">.text-primary</span>
<span class="text-success">.text-success</span>
<span class="text-info">.text-info</span>
<span class="text-warning">.text-warning</span>
<span class="text-danger">.text-danger</span>
</p>
<!-- Contextual backgrounds -->
<p class="js-html-inspector">
<span class="bg-primary">.bg-primary</span>
<span class="bg-success">.bg-success</span>
<span class="bg-info">.bg-info</span>
<span class="bg-warning">.bg-warning</span>
<span class="bg-danger">.bg-danger</span>
</p>
<!-- Close icon -->
<p class="js-html-inspector">
button.close →
<button class="close" type="button">×</button>
</p>
<!-- Carets -->
<p class="js-html-inspector">
.caret <span class="caret"></span>
</p>
<!-- Clearfix and floats -->
<div class="js-html-inspector" data-remove-target="p:first">
<p><strong>.clearfix</strong></p>
<div class="clearfix">
<div class="pull-left">.pull-left</div>
<div class="pull-right">.pull-right</div>
</div>
</div>
<br>
<p>
<!-- Center content blocks -->
<code>.center-block</code>: Set an element to <code>display: block</code> and center via <code>margin</code>.<br>
</p>
<p>
<!-- Showing and hiding content -->
<code>.show</code> and <code>.hidden</code>: Showing and hiding content.<br>
<code>.invisible</code>: Toggle only the visibility of an element.<br>
</p>
<p>
<!-- Screen reader content -->
<code>.sr-only</code>: Hide an element to all devices <b>except screen readers</b>.<br>
</p>
<p>
<!-- Image replacement -->
<code>.text-hide</code>: Replace an element's text content with a background image.
</p>
<h1 class="page-header" id="components">Components</h1>
<h2 id="button-groups">Button groups</h2>
<div class="js-html-inspector" data-remove-target="p:first">
<div class="btn-group">
<button class="btn btn-primary" type="button">#1</button>
<button class="btn btn-primary" type="button">#2</button>
<button class="btn btn-primary" type="button">#3</button>
</div>
</div><br>
<div class="js-html-inspector" data-remove-target="p:first" data-remove-class-target="div.bse-buttons">
<div class="btn-toolbar bse-buttons">
<!-- Large button group -->
<div class="btn-group btn-group-lg" role="group" aria-label="Basic example">
<button class="btn btn-primary" type="button">.btn-group-lg #1</button>
<button class="btn btn-primary" type="button">#2</button>
<button class="btn btn-primary" type="button">#3</button>
</div>
<!-- Small button group -->
<div class="btn-group btn-group-sm">
<button class="btn btn-primary" type="button">.btn-group-sm #1</button>
<button class="btn btn-primary" type="button">#2</button>
<button class="btn btn-primary" type="button">#3</button>
</div>
</div>
</div><br>
<div class="btn-toolbar bse-buttons js-html-inspector">
<!-- Button group with dropdown -->
<div class="btn-group">
<button class="btn btn-primary" type="button">#1</button>
<button class="btn btn-primary" type="button">#2</button>
<div class="btn-group">
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown" type="button">
button.dropdown-toggle
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Link #1</a></li>
<li><a href="#">Link #2</a></li>
</ul>
</div>
</div>
<!-- Only .btn-group has left padding inside .btn-toolbar -->
<!-- Vertical button group with dropdown -->
<div class="btn-group-vertical">
<button class="btn btn-primary" type="button">.btn-group-vertical button</button>
<div class="btn-group">
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown" type="button">
Dropdown
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Link #1</a></li>
<li><a href="#">Link #2</a></li>
</ul>
</div>
<button class="btn btn-primary" type="button">#3</button>
</div>
</div><br>
<div class="js-html-inspector" data-remove-target="p:first">
<div class="btn-group btn-group-justified">
<a href="#" class="btn btn-primary">#1</a>
<a href="#" class="btn btn-primary">#2</a>
<a href="#" class="btn btn-primary">#3</a>
</div>
</div><br>
<div class="js-html-inspector" data-remove-target="p:first" data-remove-class-target="div.bse-buttons">
<!-- Split button dropup -->
<div class="btn-group dropup bse-buttons">
<button class="btn btn-primary" type="button">.dropdown-menu →</button>
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown" type="button">
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Link #1</a></li>
<li><a href="#">Link #2</a></li>
</ul>
</div>
<!-- Split button right dropup -->
<div class="btn-group dropup">
<button class="btn btn-primary" type="button">.dropdown-menu-right →</button>
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown" type="button">
<span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right">
<li><a href="#">Link #1</a></li>
<li><a href="#">Link #2</a></li>
</ul>
</div>
</div>
<h2 id="input-groups">Input groups</h2>
<div class="js-html-inspector" data-remove-target="p:first">
<div class="form-group">
<div class="input-group">
<span class="input-group-addon">.input-group-addon</span>
<input class="form-control" type="text" placeholder="input.form-control">
<span class="input-group-addon">
<input type="checkbox">
</span>
<span class="input-group-addon">
<input type="radio">
</span>
</div>
</div>
<div class="form-group">
<div class="input-group">
<input class="form-control" type="text" placeholder="input.form-control">
<span class="input-group-btn">
<button class="btn btn-primary" type="button">
.input-group-btn button
</button>
</span>
</div>
</div>
</div>
<div class="js-html-inspector" data-remove-target="p:first">
<div class="form-group">
<div class="input-group input-group-lg">
<span class="input-group-addon">Addon</span>
<input class="form-control input-lg" type="text" placeholder=".input-lg">
<span class="input-group-addon">Addon</span>
</div>
</div>
</div>
<div class="js-html-inspector" data-remove-target="p:first">
<div class="form-group">
<div class="input-group input-group-sm">
<span class="input-group-addon">Addon</span>
<input class="form-control input-sm" type="text" placeholder=".input-sm">
<span class="input-group-addon">Addon</span>
</div>
</div>
</div>
<h2 id="navs">Navs</h2>
<div class="js-html-inspector" data-remove-target="p:first">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" href="#">Active</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Another link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
</div>
<div class="js-html-inspector" data-remove-target='["p:first","br"]'>
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link active" href="#">Active</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Another link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
</div>
<div class="js-html-inspector" data-remove-target='["p:first","br"]'>
<ul class="nav nav-pills nav-stacked">
<li class="nav-item">
<a class="nav-link active" href="#">Active</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Another link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
</div>
<h2 id="breadcrumbs">Breadcrumbs</h2>
<div class="js-html-inspector" data-remove-target="p:first">
<ol class="breadcrumb">
<li><a href="#">li a</a></li>
<li><a href="#">Link #2</a></li>
<li class="active">li.active</li>
</ol>
</div>
<h2 id="pagination">Pagination</h2>
<div class="js-html-inspector" data-remove-target="div:first">
<div><strong>nav ul.pagination</strong></div>
<nav>