-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocs.html
1543 lines (1358 loc) · 80.1 KB
/
docs.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
---
title: Pavilion CSS Documentation
subtitle: Because who doesn't like reading documentation?
download: true
---
<!--section class="main-section version-picker">
<div class="container">
<div class="version-picker-box">
<span class="tag">Version: </span>
<span class="version">
<div class="version-current">2.0.3 <i class="material-icons">arrow_drop_down</i></div>
<ul class="version-dropdown">
<li class="version-item current ">
<a href="/docs" class="version-link disable-click "><i class="material-icons">check</i> 2.0.3</a>
</li>
<li class="version-item ">
<a href="/deprecated/docs" class="version-link "><i class="material-icons">check</i> 1.0.31</a>
</li>
</ul>
</span>
</div>
</div>
</section-->
<section class="main-section">
<div class="container">
<div class="row">
<div class="col-tp-25 hide-pl hide-pp">
<ul class="documentation-list nav" id="sticky">
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#gettingstarted">Getting started</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#breakpoints">Breakpoints</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#containers">Containers</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#grid">Grid</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#typo">Typography</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#buttons">Buttons</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#lists">Lists</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#forms">Forms</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#tables">Tables</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#utils">Utilities</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#emrem">Using EM & REM</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#customizing">Customizing</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#gulp">Build system</a>
</li>
<li class="documentation-list-item">
<a class="documentation-list-link" data-scroll href="#support">Support</a>
</li>
</ul>
</div>
<div class="col-tp-75">
<div id="gettingstarted" class="documentation-section">
<h3>Getting started</h3>
<p>First of all, thanks for checking out Pavilion! Now let’s get you started. Here are four options to include Pavilion in your project.</p>
<h5 id="download">Download</h5>
<p><a href="https://github.com/getpavilion/pavilion/archive/master.zip" rel="nofollow" download="">
<button class="button button-default">Source package</button>
</a>
<a href="https://raw.githubusercontent.com/getpavilion/pavilion/master/dist/pavilion.min.css" rel="nofollow" download="">
<button class="button button-default">Compiled CSS</button>
</a></p>
<h5 id="cdn-link">CDN link</h5>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><link</span> <span class="na">rel=</span><span class="s">"stylesheet"</span> <span class="na">href=</span><span class="s">"https://cdnjs.cloudflare.com/ajax/libs/pavilion/2.0.3/pavilion.min.css"</span> <span class="nt">/></span></code></pre></figure>
<h5 id="install-with-npm">Install with NPM</h5>
<figure class="highlight"><pre><code class="language-html" data-lang="html">npm install pavilion</code></pre></figure>
<h5 id="install-with-bower">Install with Bower</h5>
<figure class="highlight"><pre><code class="language-html" data-lang="html">bower install pavilion</code></pre></figure>
<p><br /></p>
<h3 id="pavilion-source-files">Pavilion source files</h3>
<p>When installing Pavilion with NPM, Bower or the source download, the following structure is delivered.</p>
<figure class="highlight"><pre><code class="language-html" data-lang="html">pavilion/
├── dist/
│ ├── pavilion.css
│ ├── pavilion.min.css
│ ├── pavilion.min.css.map
├── demo/
│ ├── demo project files
├── scss/
│ ├── pavilion.scss
│ └── pavilion-parts/
│ ├── _base.scss
│ ├── _buttons.scss
│ ├── _forms.scss
│ ├── _functions.scss
│ ├── _grid.scss
│ ├── _lists.scss
│ ├── _mixins.scss
│ ├── _normalize.scss
│ ├── _tables.scss
│ ├── _typography.scss
│ ├── _utilities.scss
│ └── _variables.scss
├── README.md
├── CHANGELOG.md
├── license
├── gulpfile.js
└── package.json</code></pre></figure>
<p>For consistent browser behaviour Pavilion ships with <strong>normalize.css</strong>, a collection of HTML element and attribute style-normalizations by Nicolas Gallagher and Jonathan Neal. See their documentation <a href="http://necolas.github.io/normalize.css/">here</a>.</p>
</div>
<div class="spacer"> </div>
<div id="breakpoints" class="documentation-section">
<h3>Breakpoints</h3>
<p>Pavilion’s grid system works with four breakpoints which break between common device screen widths:</p>
<table>
<!-- Table head -->
<thead>
<tr>
<th>Device & orientation</th>
<th>Active on</th>
<th>Class usage</th>
</tr>
</thead>
<!-- Table body -->
<tbody>
<tr>
<td>Phone Portrait</td>
<td>Smaller than <strong>phone landscape</strong></td>
<td><code>*-pp-*</code></td>
</tr>
<tr>
<td>Phone Landscape</td>
<td><strong>540px</strong> and larger</td>
<td><code>*-pl-*</code></td>
</tr>
<tr>
<td>Tablet Portrait</td>
<td><strong>768px</strong> and larger</td>
<td><code>*-tp-*</code></td>
</tr>
<tr>
<td>Tablet Landscape</td>
<td><strong>991px</strong> and larger</td>
<td><code>*-tl-*</code></td>
</tr>
<tr>
<td>Desktop</td>
<td><strong>1200px</strong> and larger</td>
<td><code>*-dt-*</code></td>
</tr>
</tbody>
</table>
<p>The breakpoint classes are derived from their respective devices and orientations. The <strong>Phone Portrait</strong> breakpoint uses the <strong>Phone Landscape</strong> width as it’s maximum width.</p>
<p>The breakpoints can be adjusted in the <code class="highlighter-rouge">_variables.scss</code>, which is included in the source download and NPM/Bower installations. See <a data-scroll="" href="#gettingstarted">getting started</a> for those
installations or the <a data-scroll="" href="#customizing">customizing</a> section for the variables.</p>
</div>
<div class="spacer"> </div>
<div id="containers" class="documentation-section">
<h3>Containers</h3>
<p>To keep all your elements packed in consistent left and right paddings you should wrap them in containers. Basically you have three types of containers.</p>
<h5 id="standard-fixed-width-container">Standard (fixed width) container</h5>
<p>This container has a default max-width of 1140px and is centered in the viewport.</p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><div</span> <span class="na">class=</span><span class="s">"container"</span><span class="nt">></span>
<span class="c"><!-- Container width: 1140px --></span>
<span class="nt"></div></span></code></pre></figure>
<h5 id="full-width-container">Full width container</h5>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><div</span> <span class="na">class=</span><span class="s">"container-full-width"</span><span class="nt">></span>
<span class="c"><!-- Container width: 100% --></span>
<span class="nt"></div></span></code></pre></figure>
<h5 id="smaller-containers-matches-breakpoints">Smaller containers (matches breakpoints)</h5>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><div</span> <span class="na">class=</span><span class="s">"container-pl"</span><span class="nt">></span>
<span class="c"><!-- Container width: phone landscape / 540px --></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"container-tp"</span><span class="nt">></span>
<span class="c"><!-- Container width: tablet portrait / 768px --></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"container-tl"</span><span class="nt">></span>
<span class="c"><!-- Container width: tablet landscape / 991px --></span>
<span class="nt"></div></span></code></pre></figure>
<p>Breakpoint specific container are of good use when creating narrow designs. They behave like standard containers but have a smaller max-width.</p>
</div>
<div class="spacer"> </div>
<div id="grid" class="documentation-section">
<h3>Grid</h3>
<p>When creating layouts with columns there are a couple of things to consider. Pavilion leans on the following, common concept:</p>
<p>A <code class="highlighter-rouge">.container</code> wraps elements and provides you with <strong>left and right padding</strong> to keep the edges of the screen away from your content. When placing columns inside containers, negative margin
is used to prevent double padding (columns have padding too). This is done by placing the columns inside a <code class="highlighter-rouge">.row</code>.</p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><div</span> <span class="na">class=</span><span class="s">"container"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"row"</span><span class="nt">></span>
<span class="c"><!-- Columns go here, inside a row to prevent double paddings --></span>
<span class="nt"></div></span>
<span class="nt"></div></span></code></pre></figure>
<h5 id="rules-of-thumb">Rules of thumb:</h5>
<ol>
<li>Always wrap a row in a container</li>
<li>Columns within a container must have a row as their first parent to prevent double padding</li>
</ol>
<h3 id="columns">Columns</h3>
<p>As stated above: <strong>wrap columns in a row</strong> to prevent double padding. Although there is one exception. That is when you don’t use a container, you don’t wrap your columns in a row. This would remove the padding along the edges
of your screen.</p>
<h5 id="column-widths">Column widths</h5>
<hr style="opacity: 0; margin: 10px 0;" />
<div class="row">
<div class="col-pl-10">
<div class="exb">.col-*-10</div>
</div>
<div class="col-pl-90">
<div class="exb">.col-*-90</div>
</div>
</div>
<div class="row">
<div class="col-pl-20">
<div class="exb">.col-*-20</div>
</div>
<div class="col-pl-80">
<div class="exb">.col-*-80</div>
</div>
</div>
<div class="row">
<div class="col-pl-25">
<div class="exb">.col-*-25</div>
</div>
<div class="col-pl-75">
<div class="exb">.col-*-75</div>
</div>
</div>
<div class="row">
<div class="col-pl-30">
<div class="exb">.col-*-30</div>
</div>
<div class="col-pl-70">
<div class="exb">.col-*-70</div>
</div>
</div>
<div class="row">
<div class="col-pl-33">
<div class="exb">.col-*-33</div>
</div>
<div class="col-pl-66">
<div class="exb">.col-*-66</div>
</div>
</div>
<div class="row">
<div class="col-pl-40">
<div class="exb">.col-*-40</div>
</div>
<div class="col-pl-60">
<div class="exb">.col-*-60</div>
</div>
</div>
<div class="row">
<div class="col-pl-50">
<div class="exb">.col-*-50</div>
</div>
<div class="col-pl-50">
<div class="exb">.col-*-50</div>
</div>
</div>
<div class="row">
<div class="col-pl-100">
<div class="exb">.col-*-100</div>
</div>
</div>
<h3 id="responsive-columns">Responsive columns</h3>
<p>To create a flexible layout you need to be able to set specific column widths per breakpoint. Pavilion uses a common concept to do this. Just add the breakpoint’s abbreviation class to the column. Does that sound confusing? It’s easy, look:</p>
<div class="row">
<div class="col-pl-50 col-tl-33">
<div class="exb">.col-pl-50 .col-tl-33</div>
</div>
<div class="col-pl-50 col-tl-66">
<div class="exb">.col-pl-50 .col-tl-66</div>
</div>
</div>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><div</span> <span class="na">class=</span><span class="s">"row"</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-pl-50 col-tl-33"</span><span class="nt">></span>
<span class="c"><!-- 33.3333% width on 'tablet landscape' or larger --></span>
<span class="c"><!-- 50% width on 'phone landscape' or larger --></span>
<span class="c"><!-- 100% width on smaller than 'phone landscape' --></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"col-pl-50 col-tl-66"</span><span class="nt">></span>
<span class="c"><!-- 66.6666% width on tablet landscape or larger --></span>
<span class="c"><!-- 50% width on 'phone landscape' or larger --></span>
<span class="c"><!-- 100% width on smaller than 'phone landscape' --></span>
<span class="nt"></div></span>
<span class="nt"></div></span></code></pre></figure>
<p>The columns above will span a width of 33% and 66% when the viewport is equal or larger than <strong>tablet landscape</strong> (hence the <code class="highlighter-rouge">*-tl-*</code>). When the viewport gets smaller, they’ll both span a width
of 50% until the screensize drops below <strong>phone landscape</strong>. You can add column classes for each breakpoint to create fitting layouts. When a column breaks out of its breakpoint it will default to 100% width. See the <a href="#breakpoints"
data-scroll="">breakpoints</a> section for more information about breakpoints and screensizes.</p>
<h5 id="reordering-columns">Reordering columns</h5>
<p>You can reorder columns per breakpoint. To shift columns to the left and right you can use <code class="highlighter-rouge">push-*-*</code> and <code class="highlighter-rouge">pull-*-*</code>. Push and pull makes use of the left and right CSS
properties and won’t actually push other content or columns away.</p>
<p>These classes are breakpoint specific. So for example: adding the class <code class="highlighter-rouge">pull-tp-50</code> will only pull the column 50% to the left while the tablet portrait breakpoint is active. It won’t affect other breakpoints.</p>
<p>The columns below are pushed and pulled around on desktop size (with <code class="highlighter-rouge">push-dt-*</code> and <code class="highlighter-rouge">pull-dt-*</code>). Try to resize the browser and see how the columns below switch around.</p>
<div class="row">
<div class="col-tp-66 push-dt-33">
<div class="exb" style="background-color: #EFEFEF; color: #426AFB;">
.col-tp-66 .push-dt-33
</div>
</div>
<div class="col-tp-33 pull-dt-66">
<div class="exb">
.col-tp-33 .pull-dt-66
</div>
</div>
</div>
<h5 id="offsetting-columns-with-margin">Offsetting columns with margin</h5>
<p>Where reordering makes use of the left and right CSS properties, offsetting adds margin to the left of a column and will affect the DOM flow. Offsets are created by adding <code class="highlighter-rouge">offset-*-*</code> to your column in
the same way pulls and pushes are created.</p>
</div>
<div class="spacer"> </div>
<div id="typo" class="documentation-section">
<h3>Typography</h3>
<p>The headings <code class="highlighter-rouge">h1</code> trough <code class="highlighter-rouge">h6</code> are available and accompanied by corresponding classes: <code class="highlighter-rouge">.h1</code> trough <code class="highlighter-rouge">.h6</code>.
These classes come in handy when you want to bump up (or down) an element’s textual context to a certain heading size. For instance, giving a button the class <code class="highlighter-rouge">.h3</code> will give it a text size matching that
of a <code class="highlighter-rouge">h3</code> heading.</p>
<p>The font-sizes are set in EM’s and are relative the <code class="highlighter-rouge">body</code> font-size.</p>
<p><br /></p>
<div class="typo-example-no-margin">
<h1>The quick brown fox</h1>
<h2>The quick brown fox</h2>
<h3>The quick brown fox</h3>
<h4>The quick brown fox</h4>
<h5 class="not-bold">The quick brown fox</h5>
<h6>The quick brown fox</h6>
</div>
<p><br /></p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="c"><!-- Heading tags --></span>
<span class="nt"><h1></span>The quick brown fox<span class="nt"></h1></span> <span class="c"><!-- font-size: 3.157em; margin-top: 0; --></span>
<span class="nt"><h2></span>The quick brown fox<span class="nt"></h2></span> <span class="c"><!-- font-size: 2.369em; --></span>
<span class="nt"><h3></span>The quick brown fox<span class="nt"></h3></span> <span class="c"><!-- font-size: 1.777em; --></span>
<span class="nt"><h4></span>The quick brown fox<span class="nt"></h4></span> <span class="c"><!-- font-size: 1.333em; --></span>
<span class="nt"><h5></span>The quick brown fox<span class="nt"></h5></span> <span class="c"><!-- font-size: 1em; --></span>
<span class="nt"><h6></span>The quick brown fox<span class="nt"></h6></span> <span class="c"><!-- font-size: 0.75em; --></span>
<span class="c"><!-- Heading classes --></span>
<span class="nt"><span</span> <span class="na">class=</span><span class="s">"h1"</span><span class="nt">></span>h1 wannabe<span class="nt"></span></span>
<span class="nt"><span</span> <span class="na">class=</span><span class="s">"h2"</span><span class="nt">></span>h2 wannabe<span class="nt"></span></span>
<span class="nt"><span</span> <span class="na">class=</span><span class="s">"h3"</span><span class="nt">></span>h3 wannabe<span class="nt"></span></span>
<span class="nt"><span</span> <span class="na">class=</span><span class="s">"h4"</span><span class="nt">></span>h4 wannabe<span class="nt"></span></span>
<span class="nt"><span</span> <span class="na">class=</span><span class="s">"h5"</span><span class="nt">></span>h5 wannabe<span class="nt"></span></span>
<span class="nt"><span</span> <span class="na">class=</span><span class="s">"h6"</span><span class="nt">></span>h6 wannabe<span class="nt"></span></span></code></pre></figure>
<h5 id="modular-typography-sizing">Modular typography sizing</h5>
<p>Similair to Tim Brown’s <a href="http://modularscale.com/">Modular Scale</a> calculator, Pavilion has it’s own modular typography system. Pavilion uses a <code class="highlighter-rouge">$scale-ratio</code> and a <code class="highlighter-rouge">fontsize(index)</code> to calculate headings sizes. The default ratio is set to <code class="highlighter-rouge">1.200</code> (minor third). Head over the the <a data-scroll="true" href="#customizing">customizing</a> section to see how this concept is applied in
Pavilion and how to create your own Pavilion build with beautiful custom heading sizes.</p>
<h5 id="responsive-typography">Responsive typography</h5>
<p>In Pavilion you can add a breakpoint abbreviation to a heading class to create responsive typographic elements. For example: if we want a paragraph to have the size of an <code class="highlighter-rouge">h3</code> heading on tablet landscape
size we just add the class <code class="highlighter-rouge">.h3-tl</code>.</p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="c"><!-- h1 size on $phone-portrait-size --></span>
<span class="nt"><p</span> <span class="na">class=</span><span class="s">"h1-pp"</span><span class="nt">></span>...<span class="nt"></p></span>
<span class="c"><!-- h2 size on $tablet-landscape-size --></span>
<span class="nt"><h3</span> <span class="na">class=</span><span class="s">"h2-tl"</span><span class="nt">></span>...<span class="nt"></h3></span> </code></pre></figure>
<h5 id="paragraphs">Paragraphs</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Commodi repellendus dolor deleniti earum doloribus dignissimos nulla quaerat cupiditate totam est in reiciendis, autem aliquam. Dolorum asperiores corporis, magnam doloribus! Voluptate.</p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><p></span>Lorem ipsum ...<span class="nt"></p></span> <span class="c"><!-- font-size: 1em; --></span></code></pre></figure>
<h5 id="formatting">Formatting</h5>
<p>Regular HTML formatting will behave as expected in Pavilion. Below you can find some examples.</p>
<table style="margin-bottom: 3rem;">
<!-- Table body -->
<tbody>
<tr>
<td>Bold</td>
<td><code><b></code></td>
<td><b>Bold</b></td>
</tr>
<tr>
<td>Strong</td>
<td><code><strong></code></td>
<td><strong>Strong</strong></td>
</tr>
<tr>
<td>Italic</td>
<td><code><i></code></td>
<td><i>Italic</i></td>
</tr>
<tr>
<td>Emphasized</td>
<td><code><em></code></td>
<td><em>Emphasized</em></td>
</tr>
<tr>
<td>Marked text</td>
<td><code><mark></code></td>
<td><mark>Marked text</mark></td>
</tr>
<tr>
<td>Small text</td>
<td><code><small></code></td>
<td><small>Small text</small></td>
</tr>
<tr>
<td>Deleted text</td>
<td><code><del></code></td>
<td><del>Deleted text</del></td>
</tr>
<tr>
<td>Inserted text</td>
<td><code><ins></code></td>
<td><ins>Inserted text</ins></td>
</tr>
<tr>
<td>Superscript</td>
<td><code><sup></code></td>
<td><sup>Superscript</sup></td>
</tr>
<tr>
<td>Subscript</td>
<td><code><sub></code></td>
<td><sub>Subscript</sub></td>
</tr>
<tr>
<td>Short quote</td>
<td><code><q></code></td>
<td><q>Short quote</q></td>
</tr>
<tr>
<td>Code</td>
<td><code><code></code></td>
<td><code>code</code></td>
</tr>
<tr>
<td>Keyboard input</td>
<td><code><kbd></code></td>
<td><kbd>kbd</kbd></td>
</tr>
<tr>
<td>Preformatted text</td>
<td><code><pre></code></td>
<td><pre class="example-pre">pre</pre></td>
</tr>
</tbody>
</table>
<h5 id="blockquotes">Blockquotes</h5>
<blockquote>
Lorem ipsum ...
<footer>A.A. Bernansky</footer>
</blockquote>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><blockquote></span>
Lorem ipsum ...
<span class="nt"><footer></span>
A.A. Bernansky
<span class="nt"></footer></span>
<span class="nt"></blockquote></span></code></pre></figure>
</div>
<div class="spacer"> </div>
<div id="buttons" class="documentation-section">
<h3>Buttons</h3>
<p>There are three button variations included. Default, outlined and stripped.</p>
<p><button class="button button-default">Default button</button>
<button class="button button-outlined">Outlined button</button>
<button class="button button-stripped">Stripped button</button></p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default"</span><span class="nt">></span>Default button<span class="nt"></button></span>
<span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-outlined"</span><span class="nt">></span>Outlined button<span class="nt"></button></span>
<span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-stripped"</span><span class="nt">></span>Stripped button<span class="nt"></button></span></code></pre></figure>
<h5 id="button-fullwidth">Button fullwidth</h5>
<p><button class="button button-default button-full-width">Button fullwidth</button></p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default button-full-width"</span><span class="nt">></span>Button fullwidth<span class="nt"></button></span> </code></pre></figure>
<h5 id="button-sizes">Button sizes</h5>
<p>Just add a heading class to a button, and done.</p>
<p><button class="button button-default h3">h3 button</button> <br />
<button class="button button-default h4">h4 button</button> <br />
<button class="button button-default h5">h5 button</button> <br />
<button class="button button-default h6">h6 button</button></p>
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default h1"</span><span class="nt">></span>h1 button<span class="nt"></button></span>
<span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default h2"</span><span class="nt">></span>h2 button<span class="nt"></button></span>
<span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default h3"</span><span class="nt">></span>h3 button<span class="nt"></button></span>
<span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default h4"</span><span class="nt">></span>h4 button<span class="nt"></button></span>
<span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default h5"</span><span class="nt">></span>h5 button<span class="nt"></button></span> <span class="c"><!-- Same size as a normal button --></span>
<span class="nt"><button</span> <span class="na">class=</span><span class="s">"button button-default h6"</span><span class="nt">></span>h6 button<span class="nt"></button></span></code></pre></figure>
</div>
<div class="spacer"> </div>
<div id="lists" class="documentation-section">
<h3>Lists</h3>
<p>Well, you know…lists. Who doesn’t use lists. Pavilion comes with three common list elements. <br /> Unordered, ordered and description lists.</p>
<div class="row">
<div class="col-pl-33">
<ul>
<li>Wheels</li>
<li>Doors</li>
<li>Windows
<ul>
<li>Read</li>
<li>Sides</li>
<li>Front</li>
</ul>
</li>
<li>Bumpers</li>
<li>Lights</li>
</ul>
</div>
<div class="col-pl-33">
<ol>
<li>Water melons</li>
<li>Strawberry's</li>
<li>Exotic fruits
<ol>
<li>Mango's</li>
<li>Bananas</li>
<li>Grapes</li>
</ol>
</li>
<li>Kiwi's</li>
<li>Oranges</li>
</ol>
</div>
<div class="col-pl-33">
<dl>
<dt>List item 1</dt>
<dt>List item 2</dt>
<dt>List item 3</dt>
<dd>Sub item</dd>
<dd>Sub item</dd>
<dd>Sub item</dd>
<dt>List item 4</dt>
<dt>List item 5</dt>
</dl>
</div>
</div>
<div class="row">
<div class="col-pl-33">
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="c"><!-- Unordered list --></span>
<span class="nt"><ul></span>
<span class="nt"><li></span>Wheels<span class="nt"></li></span>
<span class="nt"><li></span>Doors<span class="nt"></li></span>
<span class="nt"><li></span>Windows
<span class="nt"><ul></span>
<span class="nt"><li></span>Read<span class="nt"></li></span>
<span class="nt"><li></span>Sides<span class="nt"></li></span>
<span class="nt"><li></span>Front<span class="nt"></li></span>
<span class="nt"></ul></span>
<span class="nt"></li></span>
<span class="nt"><li></span>Bumpers<span class="nt"></li></span>
<span class="nt"><li></span>Lights<span class="nt"></li></span>
<span class="nt"></ul></span></code></pre></figure>
</div>
<div class="col-pl-33">
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="c"><!-- Ordered list --></span>
<span class="nt"><ol></span>
<span class="nt"><li></span>Water melons<span class="nt"></li></span>
<span class="nt"><li></span>Strawberry's<span class="nt"></li></span>
<span class="nt"><li></span>Exotic fruits
<span class="nt"><ol></span>
<span class="nt"><li></span>Mango's<span class="nt"></li></span>
<span class="nt"><li></span>Bananas<span class="nt"></li></span>
<span class="nt"><li></span>Grapes<span class="nt"></li></span>
<span class="nt"></ol></span>
<span class="nt"></li></span>
<span class="nt"><li></span>Kiwi's<span class="nt"></li></span>
<span class="nt"><li></span>Oranges<span class="nt"></li></span>
<span class="nt"></ol></span></code></pre></figure>
</div>
<div class="col-pl-33">
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="c"><!-- Description list --></span>
<span class="nt"><dl></span>
<span class="nt"><dt></span>List item 1<span class="nt"></dt></span>
<span class="nt"><dt></span>List item 2<span class="nt"></dt></span>
<span class="nt"><dt></span>List item 3<span class="nt"></dt></span>
<span class="nt"><dd></span>Sub item<span class="nt"></dd></span>
<span class="nt"><dd></span>Sub item<span class="nt"></dd></span>
<span class="nt"><dd></span>Sub item<span class="nt"></dd></span>
<span class="nt"><dt></span>List item 4<span class="nt"></dt></span>
<span class="nt"><dt></span>List item 5<span class="nt"></dt></span>
<span class="nt"></dl></span></code></pre></figure>
</div>
</div>
</div>
<div class="spacer"> </div>
<div id="forms" class="documentation-section">
<h3>Forms</h3>
<p>With forms Pavilion does some of the heavy lifting for you. The styling is normalized and set up in a way in which you can easily style or use them in a way you see fit.</p>
<div class="row">
<div class="col-tl-60">
<form action="">
<div class="form-part">
<!-- Text input -->
<label for="textInput1">Text input</label>
<input id="textInput1" type="text" placeholder="'Placeholder'" />
</div>
<div class="form-part">
<!-- Text input disabled -->
<label for="textInput2" class="disabled">Text input disabled</label>
<input id="textInput2" type="text" placeholder="'Placeholder'" disabled="" />
</div>
<div class="form-part">
<!-- Password input -->
<label for="passwordInput">Password input</label>
<input id="passwordInput" type="password" placeholder="'Password'" />
</div>
<div class="form-part">
<!-- Selectbox -->
<label for="selectBox">Selectbox</label>
<select name="interests" id="selectBox">
<option value="all" selected="true">All options</option>
<option value="option1">Option #1</option>
<option value="option2">Option #2</option>
<option value="option3">Option #3</option>
<option value="option4">Option #4</option>
</select>
</div>
<div class="form-part">
<!-- Multi selectbox -->
<label for="multiSelectBox">Multi selectbox</label>
<select multiple="" name="interests" id="multiSelectBox">
<option value="option1">Option #1</option>
<option value="option2">Option #2</option>
<option value="option3">Option #3</option>
<option value="option4">Option #4</option>
<option value="option1">Option #5</option>
<option value="option2">Option #6</option>
<option value="option3">Option #7</option>
<option value="option4">Option #8</option>
</select>
</div>
<div class="form-part">
<!-- File upload -->
<label for="standardFileUpload">Standard file input</label>
<input type="file" id="standardFileUpload" />
</div>
<div class="form-part">
<!-- Checkboxes block -->
<label>Checkboxes and radio buttons</label>
<label for="checkBox1" class="checkbox">
Option #1
<input type="checkbox" id="checkBox1" checked="true" />
</label>
<label for="checkBox2" class="checkbox">
Option #2
<input type="checkbox" id="checkBox2" />
</label>
<label for="checkBox3" class="checkbox">
Option #3
<input type="checkbox" id="checkBox3" />
</label>
<label for="checkBox4" class="checkbox disabled">
Option #4 — disabled
<input type="checkbox" id="checkBox4" disabled="" />
</label>
</div>
<div class="form-part">
<!-- Radio buttons block -->
<label for="radio1" class="radio">
This?
<input type="radio" name="frequencyBlock" id="radio1" />
</label>
<label for="radio2" class="radio">
Or this..
<input type="radio" name="frequencyBlock" id="radio2" />
</label>
<label for="radio3" class="radio disabled">
Or maybe this! — disabled
<input type="radio" name="frequencyBlock" id="radio3" disabled="" />
</label>
</div>
<div class="form-part">
<!-- Inline checkboxes -->
<label>Inline checkboxes and radio buttons</label>
<label for="inlineCheckbox1" class="checkbox checkbox-inline">
Option #1
<input type="checkbox" id="inlineCheckbox1" checked="true" />
</label>
<label for="inlineCheckbox2" class="checkbox checkbox-inline">
Option #2
<input type="checkbox" id="inlineCheckbox2" />
</label>
<label for="inlineCheckbox3" class="checkbox checkbox-inline">
Option #3
<input type="checkbox" id="inlineCheckbox3" />
</label>
<label for="inlineCheckbox4" class="checkbox checkbox-inline">
Option #4
<input type="checkbox" id="inlineCheckbox4" />
</label>
</div>
<div class="form-part">
<!-- Inline radiobuttons -->
<label for="inlineRadio1" class="radio radio-inline">
This?
<input type="radio" name="frequencyInline" id="inlineRadio1" />
</label>
<label for="inlineRadio2" class="radio radio-inline">
Or this..
<input type="radio" name="frequencyInline" id="inlineRadio2" />
</label>
<label for="inlineRadio3" class="radio radio-inline">
Or maybe this!
<input type="radio" name="frequencyInline" id="inlineRadio3" />
</label>
</div>
<div class="form-part">
<!-- Textarea -->
<label for="textarea">Textarea</label>
<textarea id="textarea" name=""></textarea>
</div>
<!-- Send button -->
<button type="submit" class="button button-default">Submit</button>
</form>
</div>
</div>
<div class="collapsor">
<figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt"><form</span> <span class="na">action=</span><span class="s">""</span><span class="nt">></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Text input --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"textInput1"</span><span class="nt">></span>Text input<span class="nt"></label></span>
<span class="nt"><input</span> <span class="na">id=</span><span class="s">"textInput1"</span> <span class="na">type=</span><span class="s">"text"</span> <span class="na">placeholder=</span><span class="s">"'Placeholder'"</span><span class="nt">></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Text input disabled --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"textInput2"</span> <span class="na">class=</span><span class="s">"disabled"</span><span class="nt">></span>Text input disabled<span class="nt"></label></span>
<span class="nt"><input</span> <span class="na">id=</span><span class="s">"textInput2"</span> <span class="na">type=</span><span class="s">"text"</span> <span class="na">placeholder=</span><span class="s">"'Placeholder'"</span> <span class="na">disabled</span><span class="nt">></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Password input --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"passwordInput"</span><span class="nt">></span>Password input<span class="nt"></label></span>
<span class="nt"><input</span> <span class="na">id=</span><span class="s">"passwordInput"</span> <span class="na">type=</span><span class="s">"password"</span> <span class="na">placeholder=</span><span class="s">"'Password'"</span><span class="nt">></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Selectbox --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"selectBox"</span><span class="nt">></span>Selectbox<span class="nt"></label></span>
<span class="nt"><select</span> <span class="na">name=</span><span class="s">"interests"</span> <span class="na">id=</span><span class="s">"selectBox"</span><span class="nt">></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"all"</span> <span class="na">selected=</span><span class="s">"true"</span><span class="nt">></span>All options<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option1"</span><span class="nt">></span>Option #1<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option2"</span><span class="nt">></span>Option #2<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option3"</span><span class="nt">></span>Option #3<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option4"</span><span class="nt">></span>Option #4<span class="nt"></option></span>
<span class="nt"></select></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Multi selectbox --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"multiSelectBox"</span><span class="nt">></span>Multi selectbox<span class="nt"></label></span>
<span class="nt"><select</span> <span class="na">multiple</span> <span class="na">name=</span><span class="s">"interests"</span> <span class="na">id=</span><span class="s">"multiSelectBox"</span><span class="nt">></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option1"</span><span class="nt">></span>Option #1<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option2"</span><span class="nt">></span>Option #2<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option3"</span><span class="nt">></span>Option #3<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option4"</span><span class="nt">></span>Option #4<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option1"</span><span class="nt">></span>Option #5<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option2"</span><span class="nt">></span>Option #6<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option3"</span><span class="nt">></span>Option #7<span class="nt"></option></span>
<span class="nt"><option</span> <span class="na">value=</span><span class="s">"option4"</span><span class="nt">></span>Option #8<span class="nt"></option></span>
<span class="nt"></select></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- File upload --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"standardFileUpload"</span><span class="nt">></span>Standard file input<span class="nt"></label></span>
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"file"</span> <span class="na">id=</span><span class="s">"standardFileUpload"</span><span class="nt">></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Checkboxes block --></span>
<span class="nt"><label></span>Checkboxes and radio buttons<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"checkBox1"</span> <span class="na">class=</span><span class="s">"checkbox"</span><span class="nt">></span>
Option #1
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"checkBox1"</span> <span class="na">checked=</span><span class="s">"true"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"checkBox2"</span> <span class="na">class=</span><span class="s">"checkbox"</span><span class="nt">></span>
Option #2
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"checkBox2"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"checkBox3"</span> <span class="na">class=</span><span class="s">"checkbox"</span><span class="nt">></span>
Option #3
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"checkBox3"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"checkBox4"</span> <span class="na">class=</span><span class="s">"checkbox disabled"</span><span class="nt">></span>
Option #4 — disabled
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"checkBox4"</span> <span class="na">disabled</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Radio buttons block --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"radio1"</span> <span class="na">class=</span><span class="s">"radio"</span><span class="nt">></span>
This?
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"radio"</span> <span class="na">name=</span><span class="s">"frequencyBlock"</span> <span class="na">id=</span><span class="s">"radio1"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"radio2"</span> <span class="na">class=</span><span class="s">"radio"</span><span class="nt">></span>
Or this..
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"radio"</span> <span class="na">name=</span><span class="s">"frequencyBlock"</span> <span class="na">id=</span><span class="s">"radio2"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"radio3"</span> <span class="na">class=</span><span class="s">"radio disabled"</span><span class="nt">></span>
Or maybe this! — disabled
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"radio"</span> <span class="na">name=</span><span class="s">"frequencyBlock"</span> <span class="na">id=</span><span class="s">"radio3"</span> <span class="na">disabled</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Inline checkboxes --></span>
<span class="nt"><label></span>Inline checkboxes and radio buttons<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"inlineCheckbox1"</span> <span class="na">class=</span><span class="s">"checkbox checkbox-inline"</span><span class="nt">></span>
Option #1
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"inlineCheckbox1"</span> <span class="na">checked=</span><span class="s">"true"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"inlineCheckbox2"</span> <span class="na">class=</span><span class="s">"checkbox checkbox-inline"</span><span class="nt">></span>
Option #2
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"inlineCheckbox2"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"inlineCheckbox3"</span> <span class="na">class=</span><span class="s">"checkbox checkbox-inline"</span><span class="nt">></span>
Option #3
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"inlineCheckbox3"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"inlineCheckbox4"</span> <span class="na">class=</span><span class="s">"checkbox checkbox-inline"</span><span class="nt">></span>
Option #4
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"checkbox"</span> <span class="na">id=</span><span class="s">"inlineCheckbox4"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Inline radiobuttons --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"inlineRadio1"</span> <span class="na">class=</span><span class="s">"radio radio-inline"</span><span class="nt">></span>
This?
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"radio"</span> <span class="na">name=</span><span class="s">"frequencyInline"</span> <span class="na">id=</span><span class="s">"inlineRadio1"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"inlineRadio2"</span> <span class="na">class=</span><span class="s">"radio radio-inline"</span><span class="nt">></span>
Or this..
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"radio"</span> <span class="na">name=</span><span class="s">"frequencyInline"</span> <span class="na">id=</span><span class="s">"inlineRadio2"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"inlineRadio3"</span> <span class="na">class=</span><span class="s">"radio radio-inline"</span><span class="nt">></span>
Or maybe this!
<span class="nt"><input</span> <span class="na">type=</span><span class="s">"radio"</span> <span class="na">name=</span><span class="s">"frequencyInline"</span> <span class="na">id=</span><span class="s">"inlineRadio3"</span><span class="nt">></span>
<span class="nt"></label></span>
<span class="nt"></div></span>
<span class="nt"><div</span> <span class="na">class=</span><span class="s">"form-part"</span><span class="nt">></span>
<span class="c"><!-- Textarea --></span>
<span class="nt"><label</span> <span class="na">for=</span><span class="s">"textarea"</span><span class="nt">></span>Textarea<span class="nt"></label></span>
<span class="nt"><textarea</span> <span class="na">id=</span><span class="s">"textarea"</span> <span class="na">name=</span><span class="s">""</span><span class="nt">></textarea></span>
<span class="nt"></div></span>
<span class="c"><!-- Send button --></span>
<span class="nt"><button</span> <span class="na">type=</span><span class="s">"submit"</span> <span class="na">class=</span><span class="s">"button button-default"</span><span class="nt">></span>Submit<span class="nt"></button></span>
<span class="nt"></form></span></code></pre></figure>
<div class="uncollapse">Show full example</div>
</div>
</div>
<div class="spacer"> </div>
<div id="tables" class="documentation-section">
<h3>Tables</h3>
<p>Not having to style a table is reason enough to use a framework. Pavilion ships with a clean table. Use <code class="highlighter-rouge"><thead></code>, <code class="highlighter-rouge"><th></code> and <code class="highlighter-rouge"><tfoot></code> to emphasize data.</p>
<table>
<!-- Table head -->
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Age</th>
<th>Country</th>
<th>Birthsign</th>
</tr>
</thead>
<!-- Table footer, must come before the body -->
<tfoot>
<tr>
<td>#</td>
<td>Name</td>
<td>Age</td>
<td>Country</td>
<td>Birthsign</td>
</tr>
</tfoot>
<!-- Table body -->
<tbody>