forked from malarkey/Rock-Hammer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1396 lines (1077 loc) · 35.8 KB
/
index.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
<!-- @include _variables.html -->
<!doctype html>
<!-- @include _license.html -->
<!-- @include _conditional.html -->
<head>
<title><!-- $title --></title>
<!-- @include _head-meta.html -->
<!-- For all browsers -->
<!-- @stylesheet rock-hammer -->
<!--[if (lt IE 9) & (!IEMobile)]>
<!-- @javascript selectivizr-min -->
<!-- @stylesheet lte-ie8 -->
<![endif]-->
<!-- JavaScript -->
<!-- @javascript head.load.min -->
<!-- @include _head-icons.html -->
<!-- @include _head-ios.html -->
<!-- @include _head-ios-startup.html -->
<!-- @include _head-windows.html -->
</head>
<body class="samples" id="<!-- $id -->">
<a href="#navigation-toggle" class="navigation-toggle">Menu</a>
<nav id="navigation-toggle" role="navigation">
<ul>
<li><a href="#panel-typography">Typography</a></li>
<li><a href="#panel-colour">Colour</a></li>
<li><a href="#panel-images">Images</a></li>
<li><a href="#panel-navigation">Navigation</a></li>
<li><a href="#panel-modules">Modules</a></li>
<li><a href="#panel-forms">Forms</a></li>
<li><a href="#panel-tables">Tables</a></li>
<li><a href="#panel-widgets">Widgets</a></li>
</ul>
</nav>
<div class="container">
<section class="l-panel l-introduction">
<div class="hero-unit">
<h1><!-- $title --></h1>
<p>A curated project library for <a href="http://hammerformac.com">Hammer For Mac</a>. Rock Hammer contains baseline typography, plus styling for common HTML elements including images, forms and tables, as well as navigation, responsive modules and widgets</p>
<p class="secondary"><a href="https://github.com/malarkey/rock-hammer/zipball/master" class="btn btn-large">Download the complete Rock Hammer</a></p>
<ul class="secondary inline">
<li><a href="https://github.com/malarkey/Rock-Hammer">Rock Hammer on Github</a></li>
</ul>
</div>
</section><!-- section -->
<!-- Next ============================== -->
<section class="l-panel" id="panel-typography">
<div class="l-trigger">
<div class="l-wrap">
<div class="l-summary">
<h1><a href="#panel-typography-hidden" data-toggle="collapse" data-target="#panel-typography-hidden">Typography</a></h1>
</div><!-- l-summary -->
<div class="l-content">
<p>Rock Hammer’s baseline typography defaults including headings, block and text-level text elements and all types of lists.</p>
<p><a href="#<!-- $id -->" title="Go to top">Top</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- l-trigger -->
<div class="l-hidden collapse" id="panel-typography-hidden">
<!-- examples start -->
<div class="l-wrap">
<h2>Headings</h2>
<div class="l-summary">
<p>First-level headings are marked up using <code>‹h1›</code> tags.</p>
<p class="secondary"><b>Typeface:</b> <!-- $basefont --></p>
</div><!-- l-summary -->
<div class="l-content">
<h1>Heading level one</h1>
<p>The heading above is a first-level, heading one that may be used for page titles as well as titles in sectioning elements including <code>‹body›</code>, <code>‹section›</code> and <code>‹article›</code>.</p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<p>Second-level headings are marked up using <code>‹h2›</code> tags.</p>
<p class="secondary"><b>Typeface:</b> <!-- $basefont --></p>
</div><!-- l-summary -->
<div class="l-content">
<h2>Heading level two</h2>
<p>The heading above is a second-level, heading two. You may use more than one to create a document, section or article outline.</p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<p>Third-level headings are marked up using <code>‹h3›</code> tags.</p>
<p class="secondary"><b>Typeface:</b> <!-- $basefont --></p>
</div><!-- l-summary -->
<div class="l-content">
<h3>Heading level three</h3>
<p>The heading above is a third-level, heading three. You may use more than one to create a document, section or article outline.</p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<p>Fourth, fifth and sixth level headings are marked up using <code>‹h4› ‹h5› ‹h6›</code> tags.</p>
<p class="secondary"><b>Typeface:</b> <!-- $basefont --></p>
</div><!-- l-summary -->
<div class="l-content">
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>The headings above are a fourth, fifth and sixth level, headings four, five and six. Use to create a document, section or article outline.</p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Paragraphs</h2>
<div class="l-summary">
<h3>Unclassified paragraph</h3>
</div><!-- l-summary -->
<div class="l-content">
<p><!-- $example-short --></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Lead paragraph</h3>
<p>An additional <code>lead</code> class alters a paragraph’s presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<p class="lead"><!-- $example-long --></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Secondary paragraph</h3>
<p>An additional <code>secondary</code> class alters a paragraph’s presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<p class="secondary"><!-- $example-long --></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Tertiary paragraph</h3>
<p>An additional <code>tertiary</code> class alters a paragraph’s presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<p class="tertiary"><!-- $example-long --></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Quotations</h2>
<div class="l-summary">
<p>Block quotes are marked up using <code>‹blockquote›</code> tags. You may use an optional <code>‹cite›</code> element to cite an attribution.</p>
</div><!-- l-summary -->
<div class="l-content">
<blockquote>
<p><!-- $example-long --></p>
<small><cite><!-- $title --></cite></small>
</blockquote>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<p>An additional <code>pull-right</code> class alters a block quote’s presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<blockquote class="pull-right">
<p><!-- $example-short --></p>
<small><cite><!-- $title --></cite></small>
</blockquote>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Lists</h2>
<div class="l-summary">
<p class="secondary">There are several types of HTML list. List items are marked up using <code>‹li›</code>.</p>
<ul style="padding-bottom:2rem;display:table-cell;margin-left:22px;padding-left:3.45rem;">
<li style="float:left;width:32px;list-style-type:disc;font-size:6.4rem;"></li>
<li style="float:left;width:32px;list-style-type:circle;font-size:6.4rem;"></li>
<li style="float:left;width:32px;list-style-type:square;font-size:6.4rem;"></li>
<li style="float:left;width:32px;list-style-type:decimal;font-size:3rem;"></li>
<li style="float:left;width:32px;list-style-type:lower-alpha;font-size:3rem;"></li>
</ul>
</div><!-- l-summary -->
<div class="l-content">
<ul style="padding-left:3.25rem;margin-bottom:3rem;margin-left:22px;font-size:1.4rem;overflow:hidden;padding-left:3.25rem;">
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:none;">None</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:disc;">Disc</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:circle;">Circle</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:square;">Square</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:decimal;">Decimal</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:decimal-leading-zero;">Decimal leading zero</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:upper-roman;">Upper roman</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:lower-greek;">Lower greek</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:lower-alpha;">Lower alpha</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:upper-alpha;">Upper alpha</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:armenian;">Armenian</li>
<li style="float:left;width:44.25%;min-width:14rem;list-style-type:georgian;">Georgian</li>
</ul>
</div><!-- l-content -->
</div><!-- l-wrap -->
<div class="l-wrap">
<div class="l-summary">
<h3>Unordered list</h3>
<p>Unordered lists are marked up using <code>‹ul›</code> tags. An unordered list describes a collection of items.</p>
</div><!-- l-summary -->
<div class="l-content">
<ul>
<li>Unordered list item</li>
<li>Unordered list item</li>
<li>Unordered list item</li>
<li>Unordered list item</li>
<li>Unordered list item</li>
<li>Unordered list item</li>
</ul>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Nested unordered list</h3>
</div><!-- l-summary -->
<div class="l-content">
<ul>
<li>Unordered list item</li>
<li>
<ul>
<li>Nested unordered list item</li>
<li>Nested unordered list item</li>
<li>Nested unordered list item</li>
</ul>
</li>
<li>Unordered list item</li>
</ul>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<p>An additional <code>inline</code> class alters a list’s presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<ul class="inline">
<li>Inline list item</li>
<li>Inline list item</li>
<li>Inline list item</li>
</ul>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Ordered list</h3>
<p>Ordered lists are marked up using <code>‹ol›</code> tags. An ordered list may have various numbering schemes presented through CSS.</p>
</div><!-- l-summary -->
<div class="l-content">
<ol>
<li>Ordered list item</li>
<li>Ordered list item</li>
<li>Ordered list item</li>
<li>Ordered list item</li>
<li>Ordered list item</li>
<li>Ordered list item</li>
</ol>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Nested ordered list</h3>
</div><!-- l-summary -->
<div class="l-content">
<ol>
<li>Ordered list item</li>
<li>
<ol>
<li>Nested ordered list item</li>
<li>Nested ordered list item</li>
<li>Nested ordered list item</li>
</ol>
</li>
<li>Ordered list item</li>
</ol>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Footnotes</h3>
</div><!-- l-summary -->
<div class="l-content">
<ol class="footnotes">
<li>Footnote ordered list item <sup><a href="" title="Back">↑</a></sup></li>
<li>Footnote ordered list item <sup><a href="" title="Back">↑</a></sup></li>
<li>Footnote ordered list item <sup><a href="" title="Back">↑</a></sup></li>
</ol>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Definition list</h3>
<p>A definition list <code>‹dl›</code> consists of pairs of definition terms <code>‹dt›</code> and definition descriptions <code>‹dd›</code>.</p>
</div><!-- l-summary -->
<div class="l-content">
<dl>
<dt><!-- $title --></dt>
<dd><!-- $example-short --></dd>
</dl>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Horizontal definition list</h3>
<p>An additional <code>dl-horizontal</code> class alters a definition list’s presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<dl class="dl-horizontal">
<dt><!-- $title --></dt>
<dd><!-- $example-short --></dd>
</dl>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Text level elements</h2>
<p>Text level <abbr title="HyperText Markup Language">HTML</abbr> elements may be used within other elements. They include: <em>em</em> and <strong>strong</strong> for semantic emphasis, <i>i</i> and <b>b</b> for presentational formatting, <abbr title="Abbreviation">abbr</abbr> abbreviations, <cite>cite</cite> citations, <code>code</code> example, <del>del</del>, <ins>ins</ins> for visibly deleted and inserted content, <dfn>dfn</dfn> definitions, <mark>mark</mark> for highlighted passages and <sup>sup</sup> superscript and <sub>sub</sub> subscript.</p>
</div><!-- l-wrap -->
</div><!-- l-hidden -->
</section><!-- section -->
<!-- Next ============================== -->
<section class="l-panel" id="panel-colour">
<div class="l-trigger">
<div class="l-wrap">
<div class="l-summary">
<h1><a href="#panel-colour-hidden" data-toggle="collapse" data-target="#panel-colour-hidden">Colour</a></h1>
</div><!-- l-summary -->
<div class="l-content">
<p>Colour that creates atmosphere and an interaction vocabulary. What can I press, what can’t I press, what have I pressed?</p>
<p><a href="#<!-- $id -->" title="Go to top">Top</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- l-trigger -->
<div class="l-hidden collapse" id="panel-colour-hidden">
<!-- @include _colour.html -->
</div><!-- l-hidden -->
</section><!-- section -->
<!-- Next ============================== -->
<section class="l-panel" id="panel-images">
<div class="l-trigger">
<div class="l-wrap">
<div class="l-summary">
<h1><a href="#panel-images-hidden" data-toggle="collapse" data-target="#panel-images-hidden">Images</a></h1>
</div><!-- l-summary -->
<div class="l-content">
<p>Textural treatments for images including backgrounds, borders, shapes and shadows.</p>
<p><a href="#<!-- $id -->" title="Go to top">Top</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- l-trigger -->
<div class="l-hidden collapse" id="panel-images-hidden">
<div class="l-wrap">
<div class="l-summary">
<p><b>Note:</b> <code>img-rounded</code> and <code>img-circle</code> are unsupported by IE7-8.</p>
</div><!-- l-summary -->
<div class="l-content">
<p><img src="<!-- @path rock-hammer-1.jpg -->" width="128" alt="" class="img-rounded">
<img src="<!-- @path rock-hammer-2.jpg -->" width="128" alt="" class="img-circle">
<img src="<!-- @path rock-hammer-3.jpg -->" width="128" alt="" class="img-polaroid"></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Figures and figcaptions</h3>
</div><!-- l-summary -->
<div class="l-content">
<figure>
<img src="<!-- @path rock-hammer-1.jpg -->" width="128" alt="" class="img-rounded">
<figcaption>Figure caption</figcaption>
</figure>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- l-hidden -->
</section><!-- section -->
<!-- Next ============================== -->
<section class="l-panel" id="panel-navigation">
<div class="l-trigger">
<div class="l-wrap">
<div class="l-summary">
<h1><a href="#panel-navigation-hidden" data-toggle="collapse" data-target="#panel-navigation-hidden">Navigation</a></h1>
</div><!-- l-summary -->
<div class="l-content">
<p>Commonly used navigation patterns including tabs and pills, breadcrumbs and pagination.</p>
<p><a href="#<!-- $id -->" title="Go to top">Top</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- l-trigger -->
<div class="l-hidden collapse" id="panel-navigation-hidden">
<div class="l-wrap">
<div class="l-summary">
<h3>Basic navbar</h3>
<p>Basic navbar is marked up using <code>‹ul›</code> tags with an additional <code>navbar</code> and <code>navbar--inner</code> classes.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-navbar.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Tabs</h2>
<div class="l-summary">
<h3>Tabbed navigation</h3>
<p>All navigation units are marked up using <code>‹ul›</code> tags with an additional <code>nav nav-tabs</code> classes.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-tabbable.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Navigation tabbed below</h3>
<p>An additional <code>tabs-below</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-tabbable-below.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Navigation tabbed left</h3>
<p>An additional <code>tabs-left</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-tabbable-left.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Navigation tabbed right</h3>
<p>An additional <code>tabs-right</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-tabbable-right.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Breadcrumbs</h3>
<p>Breadcrumbs are marked up using <code>‹ul›</code> tags with an additional <code>breadcrumb</code> class.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-breadcrumbs.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Pill shaped navigation</h3>
<p>Pills are marked up using <code>‹ul›</code> tags with additional <code>nav</code> and <code>nav-pills</code> classes.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-nav-pills.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>List navigation</h3>
<p>Lists are marked up using <code>‹ul›</code> tags with additional <code>nav</code> and <code>nav-list</code> classes. <code>nav-header</code> class also alters the presentation of list items.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-nav-list.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Stacked tabbed navigation</h3>
<p>Stacked tabs are marked up using <code>‹ul›</code> tags with additional <code>nav</code>, <code>nav-tabs</code> and <code>nav-stacked</code> classes.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-nav-tabs-stacked.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Stacked pill shaped navigation</h3>
<p>Stacked pills are marked up using <code>‹ul›</code> tags with additional <code>nav</code>, <code>nav-pills</code> and <code>nav-stacked</code> classes.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-nav-pills-stacked.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Pagination</h2>
<div class="l-summary">
<p>All pagination units are marked up using <code>‹ul›</code> tags with an additional <code>pagination</code> class.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-pagination.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Centered pagination</h3>
<p>An additional <code>pagination-centered</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-pagination-centered.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Right aligned pagination</h3>
<p>An additional <code>pagination-right</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-pagination-right.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Pagination sizes</h3>
<p>Additional <code>pagination-large</code>, <code>pagination-small</code> and <code>pagination-mini</code> classes alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-pagination-sizes.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h2>Pager</h2>
<p>Pager units are marked up using <code>‹ul›</code> tags with an additional <code>pager</code> class.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-pager.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- hidden -->
</section><!-- section -->
<!-- Next ============================== -->
<section class="l-panel" id="panel-modules">
<div class="l-trigger">
<div class="l-wrap">
<div class="l-summary">
<h1><a href="#panel-modules-hidden" data-toggle="collapse" data-target="#panel-modules-hidden">Modules</a></h1>
</div><!-- l-summary -->
<div class="l-content">
<p>Commonly used content module patterns including hero and media units, plus textural styling of alert boxes.</p>
<p><a href="#<!-- $id -->" title="Go to top">Top</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- l-trigger -->
<div class="l-hidden collapse" id="panel-modules-hidden">
<div class="l-wrap">
<h2>Hero unit</h2>
<p>Hero units are marked up using <code>‹div›</code> tags with an additional <code>hero-unit</code> class.</p>
<!-- @include _bootstrap-hero.html -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Media</h3>
<p>All media units are marked up using <code>‹div›</code> tags with additional <code>media-unit</code>, <code>media-body</code> and <code>media-heading</code> classes. Optional <code>pull-left</code> and <code>pull-right</code> classes float anchored images.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-media.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Alerts</h2>
<div class="l-summary">
<p>All alert units are marked up using <code>‹div›</code> tags with an additional <code>alert</code> class.</p>
<p>Additional <code>alert--error</code>, <code>alert--info</code> and <code>alert--success</code> classes alters their presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-alerts.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Wells</h2>
<div class="l-summary">
<p>All well units are marked up using <code>‹div›</code> tags with an additional <code>well</code> class.</p>
</div><!-- l-summary -->
<div class="l-content">
<div class="well">
<p><!-- $example-short --></p>
</div>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<p>An additional <code>well--large</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<div class="well well--large">
<p><!-- $example-short --></p>
</div>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<p>An additional <code>well--small</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<div class="well well--small">
<p><!-- $example-short --></p>
</div>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- hidden -->
</section><!-- section -->
<!-- Next ============================== -->
<section class="l-panel" id="panel-forms">
<div class="l-trigger">
<div class="l-wrap">
<div class="l-summary">
<h1><a href="#panel-forms-hidden" data-toggle="collapse" data-target="#panel-forms-hidden">Forms</a></h1>
</div><!-- l-summary -->
<div class="l-content">
<p>Multiple form layout configurations and styling for form inputs and button shapes.</p>
<p><a href="#<!-- $id -->" title="Go to top">Top</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
</div><!-- l-trigger -->
<div class="l-hidden collapse" id="panel-forms-hidden">
<div class="l-wrap">
<div class="l-summary">
<h3>Standard form</h3>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-form-standard -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Search form</h3>
<p>An additional <code>form-search</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-form-search -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Inline form</h3>
<p>An additional <code>form-inline</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-form-inline.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Horizontal form</h3>
<p>An additional <code>form-horizontal</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<!-- @include _bootstrap-form-horizontal.html -->
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Form elements</h3>
</div><!-- l-summary -->
<div class="l-content">
<form>
<p><label for="text">The input below is <code>text</code></label><br>
<input type="text" id="text" placeholder="Placeholder"></p>
<p><label for="email">The input below is <code>email</code></label><br>
<input type="email" id="email"></p>
<p><label for="url">The input below is <code>url</code></label><br>
<input type="url" id="url"></p>
<p><label for="number">The input below is <code>number</code></label><br>
<input type="number" id="number"></p>
<p><label for="tel">The input below is <code>tel</code></label><br>
<input type="tel" id="tel"></p>
<p>The control below is <code>select</code><br>
<select>
<option>Jan</option>
<option>Feb</option>
<option>March</option>
<option>April</option>
<option>May</option>
</select>
</p>
<p>The control below is a multiple <code>select</code><br>
<select multiple="multiple">
<option>Jan</option>
<option>Feb</option>
<option>March</option>
<option>April</option>
<option>May</option>
</select>
</p>
<ul>
<li><label class="checkbox"><input type="checkbox"> Checkbox option</label></li>
<li><label class="checkbox"><input type="checkbox"> Checkbox option</label></li>
</ul>
<p><label class="radio">
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Radio option</label>
<label class="radio">
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Radio option</label></p>
<p><label for="textarea">The input below is a <code>textarea</code></label><br>
<textarea id="textarea"> </textarea></p>
</form>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<h2>Buttons</h2>
<p>Buttons are marked up using either <code>‹button›</code>, <code>‹input›</code> or <code>‹a›</code> tags with an additional <code>btn</code> class. Additional classes alter their presentation.</p>
<div class="l-summary">
<h3>Standard button</h3>
<p>An additional <code>btn</code> class creates a standard button.</p>
</div><!-- l-summary -->
<div class="l-content">
<p><button type="button" class="btn">Button</button>
<input type="submit" class="btn" value="Submit">
<a href="#" class="btn">Anchor</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Primary button</h3>
<p>An additional <code>btn-primary</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<p><button type="button" class="btn btn-primary">Button</button>
<input type="submit" class="btn btn-primary" value="Submit">
<a href="#" class="btn btn-primary">Anchor</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">
<h3>Info button</h3>
<p>An additional <code>btn-info</code> class alters the presentation.</p>
</div><!-- l-summary -->
<div class="l-content">
<p><button type="button" class="btn btn-info">Button</button>
<input type="submit" class="btn btn-info" value="Submit">
<a href="#" class="btn btn-info">Anchor</a></p>
</div><!-- l-content -->
</div><!-- l-wrap -->
<!-- Next -->
<div class="l-wrap">
<div class="l-summary">