-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.html
1369 lines (1289 loc) · 56.1 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Cheatsheet for foundation5 - The most advanced responsive front-end framework in the world. This is the latest version of cheatsheet!">
<meta name="keywords" content="foundation, zurb, cheat sheet, cheat, code, help, copy paste, learn, great cheat sheet, copy and paste">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Foundation CheatSheet</title>
<link rel="shortcut icon" type="image/ico" href="img/favicon.ico">
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/cheatsheet.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<!--header-->
<div class="row collapse cover fullwidth">
<div class="small-8 medium-6 columns">
<h2>Foundation-5<small> Cheat sheet</small></h2>
<span class="fork"><a href="https://github.com/sudheerDev/CheatSheet" target="_blank">Fork me on github</a><img class="git" src="img/github.png"></span>
</div>
<div class="small-4 medium-6 columns">
<img src="img/hero-image.svg">
</div>
</div>
<!--row for defalut colors-->
<div class="row">
<div class="small-12 columns">
<h3>Default colors</h3>
</div>
<div class="small-12 columns content">
<ul class="small-block-grid-3 large-block-grid-6">
<li class="primary-color">Primary
<br>#2ba6cb
</li>
<li class="secondary-color">Secondary
<br>#e9e9e9</li>
<li class="alert-color">Alert
<br>#f04124</li>
<li class="success-color">Success
<br>#43ac6a</li>
<li class="bodyfont-color">Body Font
<br>#222222</li>
<li class="headerfont-color">Header Font
<br>#222222</li>
</ul>
</div>
</div>
<!--Strucure panel row-->
<div class="row">
<div class="small-12 columns">
<h3>Structure</h3>
</div>
<div class="small-12 columns content structure-panel">
<div class="small-12 columns">
<h4>Media Queries</h4>
<div class="small-12 medium-6 large-4 columns">
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="mobile styles"> @media only screen { }</span>
</li>
<li><span data-tooltip class="has-tip" title="max-width 640px, mobile-only styles, use when QAing mobile issues"> @media only screen and (max-width: 40em) { }</span>
</li>
<li><span data-tooltip class="has-tip" title="min-width 641px, medium screens"> @media only screen and (min-width: 40.063em) { }</span>
</li>
<li class="show-for-medium-only"><span data-tooltip class="has-tip" title="min-width 1441px, xlarge screens"> @media only screen and (min-width: 90.063em) { }</span>
</li>
<li class="show-for-medium-only"><span data-tooltip class="has-tip" title="min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues">@media only screen and (min-width: 90.063em) and (max-width: 120em) { } </span>
</li>
</ul>
</div>
<div class="small-12 medium-6 large-4 columns">
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="min-width 641px and max-width 1024px, use when QAing tablet-only issues"> @media only screen and (min-width: 40.063em) and (max-width: 64em) { }</span>
</li>
<li><span data-tooltip class="has-tip" title="min-width 1025px, large screens"> @media only screen and (min-width: 64.063em) { }</span>
</li>
<li><span data-tooltip class="has-tip" title="min-width 1025px and max-width 1440px, use when QAing large screen-only issues"> @media only screen and (min-width: 64.063em) and (max-width: 90em) { } </span>
</li>
<li class="show-for-medium-only"><span data-tooltip class="has-tip" title="min-width 1921px, xxlarge screens"> @media only screen and (min-width: 120.063em) { }</span>
</li>
</ul>
</div>
<div class="small-12 large-4 columns hide-for-medium-only">
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="min-width 1441px, xlarge screens"> @media only screen and (min-width: 90.063em) { }</span>
</li>
<li><span data-tooltip class="has-tip" title="min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues">@media only screen and (min-width: 90.063em) and (max-width: 120em) { } </span>
</li>
<li><span data-tooltip class="has-tip" title="min-width 1921px, xxlarge screens"> @media only screen and (min-width: 120.063em) { }</span>
</li>
</ul>
</div>
</div>
<div class="small-12 medium-4 columns">
<h4>Basic</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="6-columns on all screens">div class="small-6 columns" </span>
</li>
<li><span data-tooltip class="has-tip" title="6-columns on small and 3-columns on large screens">div class="small-6 large-3 columns" </span>
</li>
<li><span data-tooltip class="has-tip" title="6-columns on small, 4-columns on medium screens and 3-columns on large screens">div class="small-6 medium-4 large-1 columns" </span>
</li>
</ul>
</div>
<div class="small-12 medium-4 columns">
<h4>Offsets</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="2-column offset on all screens">div class="small-10 small-offset-2 medium-6 columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="5-column offset on small, 3-column offset on medium and 2-column offset on large screens">div class="small-7 small-offset-5 medium-6 medium-offset-3 large-10 large-offset-2 columns"</span>
</li>
</ul>
</div>
<div class="small-12 medium-4 columns">
<h4>Incomplete Rows</h4>
<p>your row doesn't have a count that adds up to 12 columns, you can add class <code>end</code> to ovveride default behaviour of last column floating to right</p>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="new row">div class="row"</span>
</li>
<li><span data-tooltip class="has-tip" title="medium-3 columns">div class="medium-3 columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="stacks next to previous previous column">div class="medium-3 columns end"</span>
</li>
</ul>
</div>
<div class="small-12 medium-4 columns">
<h4>Centered Columns</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="10-columns centered on all screens">div class="small-10 small-centered columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="10-columns centered on large screens only">div class="small-10 large-centered columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="9-columns centered on small and medium screens">div class="small-9 small-centered large-uncentered columns"</span>
</li>
</ul>
</div>
<div class="small-12 medium-4 columns">
<h4>Source Rendering</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="push 3 columns on large screens">div class="large-9 large-push-3 columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="push 6 columns on medium screens">div class="medium-6 medium-push-6 columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="push 7 columns on small screens,push 5 columns on medium screens">small-5 small-push-7 medium-7 medium-push-5 columns</span>
</li>
</ul>
</div>
<div class="small-12 medium-4 columns">
<h4>Block Grid</h4>
<p>Evenly split the contents of a list within the grid</p>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="2 evenly spaced columns on all screens">ul class="small-block-grid-2"</span>
</li>
<li><span data-tooltip class="has-tip" title="2 evenly spaced columns on small screens and 4 evenly spaced columns on medium screens">ul class="small-block-grid-2 large-block-grid-4"</span>
</li>
</ul>
</div>
</div>
</div>
<!--visibility classes-->
<div class="row">
<div class="small-12 columns">
<h3>Visibilty Classes</h3>
</div>
<div class="small-12 columns content visibilty-panel">
<div class="small-12 medium-6 large-3 columns">
<h4>Show Classes</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="shown only on a small screen">class="show-for-small-only"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown on medium screens and up">class="show-for-medium-up"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown only on a medium screen">class="show-for-medium-only"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown on large screens and up">class="show-for-large-down"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown only on a large screen">class="show-for-large"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown on xlarge screens and up">class="show-for-large-up"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown only on an xlarge screen">class="show-for-xlarge"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown on xxlarge screens and up">class="show-for-xxlarge"</span>
</li>
</ul>
</div>
<div class="small-12 medium-6 large-3 columns">
<h4>Hide Classes</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="hide only on a small screen">class="hide-for-small-only"</span>
</li>
<li><span data-tooltip class="has-tip" title="hide on medium screens and up">class="hide-for-medium-up"</span>
</li>
<li><span data-tooltip class="has-tip" title="hide only on a medium screen">class="hide-for-medium-only"</span>
</li>
<li><span data-tooltip class="has-tip" title="hide on large screens and up">class="hide-for-large-down"</span>
</li>
<li><span data-tooltip class="has-tip" title="hide only on a large screen">class="hide-for-large"</span>
</li>
<li><span data-tooltip class="has-tip" title="hide on xlarge screens and up">class="hide-for-large-up"</span>
</li>
<li><span data-tooltip class="has-tip" title="hide only on an xlarge screen">class="hide-for-xlarge"</span>
</li>
<li><span data-tooltip class="has-tip" title="hide on xxlarge screens and up">class="hide-for-xxlarge"</span>
</li>
</ul>
</div>
<div class="small-12 medium-6 large-3 columns">
<h4>Orientation Detection</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="shown only in landscape mode">class="show-for-landscape"</span>
</li>
<li><span data-tooltip class="has-tip" title="shown only in portrait mode">class="show-for-portrait"</span>
</li>
</ul>
<h4>Touch Detection</h4>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="show on touch-enabled device">class="show-for-touch"</span>
</li>
<li><span data-tooltip class="has-tip" title="hidden on touch-enabled deivice">class="hide-for-touch"</span>
</li>
</ul>
</div>
<div class="small-12 medium-6 large-3 columns">
<h4>Accessibility</h4>
<p>If you want to hide some content but still make it accessible for screen readers, use the hidden visibility classes.To reverse the rules defined by hidden, use the visible visibility classes.</p>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="hidden on small screens but accessible on all screens">class="hidden-for-small-only"</span>
</li>
<li><span data-tooltip class="has-tip" title="visible on small screens but accessible on all screens">class="visible-for-small-only"</span>
</li>
</ul>
</div>
</div>
</div>
<!--Buttons panel-->
<div class="row">
<div class="small-12 columns">
<h3>Buttons</h3>
</div>
<div class="small-12 columns content button-panel">
<!--basic buttons-->
<div class="small-12 columns">
<h4>Basic</h4>
<div class="small-12 large-6 columns sub-content">
<div class="small-6 columns">
<a href="#" class="button tiny">Tiny Button</a>
<p>a class="button tiny"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button small">Small Button</a>
<p>a class="button small"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button">Default Button</a>
<p>a class="button"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button large">Large Button</a>
<p>a class="button large"</p>
</div>
<div class="small-12 columns">
<a href="#" class="button expand">Expanded Button</a>
<p>a class="button expand"</p>
</div>
</div>
<div class="small-12 large-6 columns sub-content">
<div class="small-6 columns ">
<a href="#" class="button alert">Alert Button</a>
<p>a class="button alert"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button success">Success Button</a>
<p>a class="button success"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button disabled">Disabled Button</a>
<p>a class="button disabled"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button secondary">Secondary Button</a>
<p>a class="button secondary"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button radius">Radius Button</a>
<p>a class="button radius"</p>
</div>
<div class="small-6 columns">
<a href="#" class="button round">Round Button</a>
<p>a class="button round"</p>
</div>
</div>
</div>
<!--Button groups-->
<div class="small-12 medium-6 large-6 columns">
<h4>Button Groups</h4>
<div class="small-12 columns sub-content">
<ul class="button-group">
<li><a href="#" class="button">Button 1</a>
</li>
<li><a href="#" class="button">Button 2</a>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="use ul with class 'button-group'">ul class="button-group"</span>
</li>
<li><span data-tooltip class="has-tip" title="li with class 'button'">li a class="button"</span>
</li>
</ul>
</div>
<div class="clear">
<h4>Button Bars</h4>
</div>
<div class="small-12 columns sub-content">
<div class="button-bar">
<ul class="button-group">
<li><a href="#" class="small button">Button 1</a>
</li>
<li><a href="#" class="small button">Button 2</a>
</li>
</ul>
<ul class="button-group">
<li><a href="#" class="small button">Button 1</a>
</li>
<li><a href="#" class="small button">Button 2</a>
</li>
</ul>
</div>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="apply class='button-bar' to div element">div class="button-bar"</span>
</li>
<li><span data-tooltip class="has-tip" title="use ul li structure for button groups with class='button-group'">ul class="button-group"</span>
</li>
<li><span data-tooltip class="has-tip" title="apply class='button' for li emements">li a class="button"</span>
</li>
</ul>
</div>
</div>
<!--split buttons-->
<div class="small-12 medium-6 large-6 columns">
<h4>Split Buttons</h4>
<div class="small-12 columns sub-content">
<a href="#" class="button split">Split Button <span data-dropdown="drop"></span></a>
<br>
<ul id="drop" class="f-dropdown" data-dropdown-content="">
<li><a href="#">This is a link</a>
</li>
<li><a href="#">This is another</a>
</li>
<li><a href="#">Yet another</a>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="have 'span' tag with data-dropdown as attribute inside 'a' tag along with 'br' at the end">a href="#" class="button split" span data-dropdown="drop">../span../a../br</span>
</li>
<li><span data-tooltip class="has-tip" title="ul tag with class'f-dropdown' and 'id' given in the span tag">ul id="drop" class="f-dropdown" data-dropdown-content</span>
</li>
<li><span data-tooltip class="has-tip" title="list emements using 'li a'">li a href="#"</span>
</li>
</ul>
</div>
<!--dropdown-->
<div class="clear">
<h4>Dropdown</h4>
</div>
<div class="small-12 columns sub-content">
<a href="#" data-dropdown="drop1" class="button dropdown">Dropdown Button</a>
<br>
<ul id="drop1" data-dropdown-content="" class="f-dropdown">
<li><a href="#">This is a link</a>
</li>
<li><a href="#">This is another</a>
</li>
<li><a href="#">Yet another</a>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="apply data-dropdown attribute on 'a' tag with classes 'button dropdown and with 'br' tag at the end">a href="#" data-dropdown="drop1" class="button dropdown" ../br</span>
</li>
<li><span data-tooltip class="has-tip" title="ul tag with class 'f-dropdown' and 'id' given in the a tag">ul id="drop1" data-dropdown-content class="f-dropdown"</span>
</li>
<li><span data-tooltip class="has-tip" title="list emements using 'li a'">li a href="#"</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--Utility classes-->
<div class="row">
<div class="small-12 columns">
<h3>Utility Classes</h3>
</div>
<div class="small-12 columns content textAlignPanel">
<div class="medium-4 columns">
<h4>Float Classes</h4>
<p>You can change the float behavior of an element by adding <code>.left</code> or <code>.right</code> to an HTML element. To clear floats, add the class <code>.clearfix</code> to the parent element.</p>
<div class="clearfix">
<a class="button right">Float Right</a>
<a class="button left">Float Left</a>
</div>
<ul class="no-bullet">
<li><span data-tooltip="" class="has-tip" title="To clear floats">div class="clearfix"</span>
</li>
<li><span data-tooltip="" class="has-tip" title="To align right">a class="button right"</span>
</li>
<li><span data-tooltip="" class="has-tip" title="To align left">a class="button left"</span>
</li>
</ul>
</div>
<div class="medium-4 columns">
<h4>Radius and Rounded</h4>
<p>The <code>.radius</code> and <code>.round</code> classes allow you to easily apply a border-radius to a UI-element. Adding the class to a button group will apply the border radius only to the outside corners.</p>
<a href="#" class="button small round">Round Button</a>
<a href="#" class="button small radius">Radius Button</a>
<ul class="no-bullet">
<li><span data-tooltip="" class="has-tip" title="border style-round">class="button round"</span>
</li>
<li><span data-tooltip="" class="has-tip" title="border style-radius">a class="button radius"</span>
</li>
</ul>
</div>
<div class="medium-4 columns">
<h4>Text Align Classes</h4>
<p>You can change the text alignment of an element by adding <code>.text-left</code>, <code>.text-right</code>, <code>.text-center</code> or <code>.text-justify</code> to an element.</p>
<p class="text-left">This text is left aligned</p>
<p class="text-right">This text is right aligned</p>
<p class="text-center">This text is center aligned</p>
<a href="#" class="textClasses" data-reveal-id="textClasses">More text alignment classes</a>
<div id="textClasses" class="reveal-modal" data-reveal>
<table style="width:100%;">
<tbody>
<tr>
<td><code>.text-left</code>
</td>
<td><code>.text-right</code>
</td>
<td><code>.text-center</code>
</td>
<td><code>.text-justify</code>
</td>
</tr>
<tr>
<td><code>.small-text-left</code>
</td>
<td><code>.small-text-right</code>
</td>
<td><code>.small-text-center</code>
</td>
<td><code>.small-text-justify</code>
</td>
</tr>
<tr>
<td><code>.small-only-text-left</code>
</td>
<td><code>.small-only-text-right</code>
</td>
<td><code>.small-only-text-center</code>
</td>
<td><code>.small-only-text-justify</code>
</td>
</tr>
<tr>
<td><code>.medium-text-left</code>
</td>
<td><code>.medium-text-right</code>
</td>
<td><code>.medium-text-center</code>
</td>
<td><code>.medium-text-justify</code>
</td>
</tr>
<tr>
<td><code>.medium-only-text-left</code>
</td>
<td><code>.medium-only-text-right</code>
</td>
<td><code>.medium-only-text-center</code>
</td>
<td><code>.medium-only-text-justify</code>
</td>
</tr>
<tr>
<td><code>.large-text-left</code>
</td>
<td><code>.large-text-right</code>
</td>
<td><code>.large-text-center</code>
</td>
<td><code>.large-text-justify</code>
</td>
</tr>
<tr>
<td><code>.large-only-text-left</code>
</td>
<td><code>.large-only-text-right</code>
</td>
<td><code>.large-only-text-center</code>
</td>
<td><code>.large-only-text-justify</code>
</td>
</tr>
<tr>
<td><code>.xlarge-text-left</code>
</td>
<td><code>.xlarge-text-right</code>
</td>
<td><code>.xlarge-text-center</code>
</td>
<td><code>.xlarge-text-justify</code>
</td>
</tr>
<tr>
<td><code>.xlarge-only-text-left</code>
</td>
<td><code>.xlarge-only-text-right</code>
</td>
<td><code>.xlarge-only-text-center</code>
</td>
<td><code>.xlarge-only-text-justify</code>
</td>
</tr>
<tr>
<td><code>.xxlarge-text-left</code>
</td>
<td><code>.xxlarge-text-right</code>
</td>
<td><code>.xxlarge-text-center</code>
</td>
<td><code>.xxlarge-text-justify</code>
</td>
</tr>
</tbody>
<thead>
<tr>
<td>Align Left</td>
<td>Align Right</td>
<td>Align Center</td>
<td>Justify</td>
</tr>
</thead>
</table>
<a class="close-reveal-modal">×</a>
</div>
</div>
</div>
</div>
<!--forms-->
<div class="row">
<div class="small-12 columns">
<h3>Forms</h3>
</div>
<div class="small-12 columns content">
<div class="medium-12 large-8 columns forms">
<h4>Input Forms</h4>
<div class="small-12 medium-6 columns ">
<div class="row">
<div class="small-3 columns">
<label for="right-label" class="right inline">Label</label>
</div>
<div class="small-9 columns">
<input type="text" id="right-label" placeholder="Inline Text Input">
</div>
</div>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="column for label">div class="small-3 columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="label tag with class='right-inline'">label for="right-label" class="right inline"</span>
</li>
<li><span data-tooltip class="has-tip" title="column fot input">div class="small-9 columns</span>
</li>
<li><span data-tooltip class="has-tip" title="input tag">input type="text" id="right-label" placeholder="Inline Text Input"</span>
</li>
</ul>
</div>
<div class="small-12 medium-6 columns">
<div class="row collapse">
<div class="small-10 columns">
<input type="text" placeholder="Hex Value">
</div>
<div class="small-2 columns">
<a href="#" class="button postfix">Go</a>
</div>
</div>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="div with class 'row collpase'-remove padding"> div class="row collapse"</span>
</li>
<li><span data-tooltip class="has-tip" title="column for input"> div class="small-10 columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="input tag">input type="text" placeholder="Hex Value"</span>
</li>
<li><span data-tooltip class="has-tip" title="column for button"> div class="small-2 columns"</span>
</li>
<li><span data-tooltip class="has-tip" title="button element"> a href="#" class="button postfix"</span>
</li>
</ul>
</div>
</div>
<div class="large-4 columns">
<h4>Switches</h4>
<div class="small-6 columns">
<div class="switch">
<input id="exampleCheckboxSwitch" type="checkbox">
<label for="exampleCheckboxSwitch"></label>
</div>
</div>
<div class="small-6 columns">
<div class="switch round">
<input id="exampleCheckboxSwitchRound" type="checkbox">
<label for="exampleCheckboxSwitchRound"></label>
</div>
</div>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="div with class 'switch'">div class="switch"</span>
</li>
<li><span data-tooltip class="has-tip" title="input tag with id and type='checkbox'">input id="exampleCheckboxSwitch" type="checkbox"</span>
</li>
<li><span data-tooltip class="has-tip" title="label with the above id">label for="exampleCheckboxSwitch"</span>
</li>
</ul>
</div>
<div class="medium-12 large-8 columns forms">
<h4>Error States</h4>
<div class="row">
<div class="small-12 medium-6 columns">
<input type="text" class="error" />
<small class="error">Invalid entry</small>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="label tag with class 'error'">label class="error"</span>
</li>
<li><span data-tooltip class="has-tip" title="input type with class='error'"> input type="text" class="error"</span>
</li>
<li><span data-tooltip class="has-tip" title="error message">small class="error"</span>
</li>
</ul>
</div>
<div class="small-12 medium-6 columns">
<textarea class="error" placeholder="Message..."></textarea>
<small class="error">Invalid entry</small>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="textarea with class='error'">textarea class="error" placeholder="Message..."</span>
</li>
<li><span data-tooltip class="has-tip" title="error message"> small class="error"</span>
</li>
</ul>
</div>
</div>
</div>
<div class="large-4 columns">
<h4>Sliders</h4>
<div class="range-slider" data-slider>
<span class="range-slider-handle" role="slider" tabindex="0"></span>
<span class="range-slider-active-segment"></span>
<input type="hidden">
</div>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="div tag with class='range-slider' and attribute data-slider">div class="range-slider" data-slider</span>
</li>
<li><span data-tooltip class="has-tip" title="span tag with class='range-slider-handle and role attribute'">span class="range-slider-handle" role="slider"</span>
</li>
<li><span data-tooltip class="has-tip" title="span tag with class range-slider-active-segment">span class="range-slider-active-segment"</span>
</li>
<li><span data-tooltip class="has-tip" title="hidden input type">input type="hidden"</span>
</li>
</ul>
</div>
</div>
</div>
<!--Typography-->
<div class="row">
<div class="small-12 columns">
<h3>Typography</h3>
</div>
<div class="small-12 columns content typography-panel">
<div class="medium-4 large-3 columns typography">
<h4 class="block">Headers</h4>
<h1><span>h1.</span></h1>
<h2><span>h2.</span></h2>
<h3 class="defaultH3"><span>h3.</span></h3>
<h4 class="defaultH4"><span>h4.</span></h4>
<h5><span>h5.</span></h5>
<h6><span>h6.</span></h6>
<h4 class="block">Sub Headers</h4>
<h1 class="subheader"><span>h1.</span></h1>
<h2 class="subheader"><span>h2.</span></h2>
<h3 class="subheader defaultH3"><span>h3.</span></h3>
<h4 class="subheader defaultH4"><span>h4.</span></h4>
<h5 class="subheader"><span>h5.</span></h5>
<h6 class="subheader"><span>h6.</span></h6>
<h4 class="block heading">Small Header Segments</h4>
<h1><small>h1.</small></h1>
<h2><small>h2.</small></h2>
<h3 class="defaultH3"><small>h3.</small></h3>
<h4 class="defaultH4"><small>h4.</small></h4>
<h5><small>h5.</small></h5>
<h6><small>h6</small></h6>
</div>
<div class="medium-4 large-3 columns">
<h4>List items</h4>
<ul class="no-bullet">
<li>Unordered list</li>
<ul class="circle">
<li><span data-tooltip class="has-tip" title="ul with class='circle'">circle as bullet -div class="circle"</span>
</li>
</ul>
<ul class="disc">
<li><span data-tooltip class="has-tip" title="ul with class='disc'">disc as bullet -div class="disc"</span>
</li>
</ul>
<ul class="square">
<li><span data-tooltip class="has-tip" title="ul with class='square'">sqaure as bullet -div class="square"</span>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="ul with class='no-bullet'">no bullet -div class="no-bullet"</span>
</li>
</ul>
</ul>
</ul>
<ul class="no-bullet">
<li>Ordered list</li>
<ol>
<li><span data-tooltip class="has-tip" title="typical ol">this is an ordered list</span>
</li>
</ol>
</ul>
<h4>keystroke</h4>
<p>For example, to close your browser hit <kbd>Cmd</kbd>+<kbd>Q</kbd>
<pre><code class="language-html keystroke-code"><div class="code-container"><span class="tag"><<span class="title">p</span>></span><span class="tag"><<span class="title">kbd</span>></span>Cmd<span class="tag"></<span class="title">kbd</span>></span>+<span class="tag"><<span class="title">kbd</span>></span>Q<span class="tag"></<span class="title">kbd</span>></span><span class="tag"></<span class="title">p</span>></span></div></code></pre>
</p>
</div>
<div class="medium-4 large-3 columns">
<h4>V-Card</h4>
<ul class="vcard">
<li class="fn">first name</li>
<li class="street-address">street address.</li>
<li class="locality">locality</li>
<li><span class="state">state</span>, <span class="zip">12345</span>
</li>
<li class="email"><a href="#">[email protected]</a>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="ul with class='vcard'">ul class="vcard"</span>
</li>
<li><span data-tooltip class="has-tip" title="Name and surname">li class="fn"</span>
</li>
<li><span data-tooltip class="has-tip" title="Address">li class="street-address"</span>
</li>
<li><span data-tooltip class="has-tip" title="Locality">li class="locality"</span>
</li>
<li><span data-tooltip class="has-tip" title="State">li span class="state"</span>
</li>
<li><span data-tooltip class="has-tip" title="Zip code">li span class="zip"</span>
</li>
<li><span data-tooltip class="has-tip" title="Email:id">li class="email"</span>
</li>
</ul>
</div>
<div class="medium-4 large-3 clearMedium columns">
<div class="small-12 columns">
<h4>Blockquotes</h4>
<p>blockquote QUOTE cite AUTHOR /cite /blockquote</p>
<blockquote>Those people who think they know everything are a great annoyance to those of us who do.<cite>Isaac Asimov</cite>
</blockq uote>
</div>
<div class="small-12 columns">
<h4>Description List</h4>
<span data-tooltip class="has-tip" title="Definition list tags">dl..dt..dd</span>
<dl>
<dt>Definition Title</dt>
<dd>Definition Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nullam id dolor id nibh .</dd>
</dl>
</div>
</div>
<div class="medium-8 columns">
<h4>Labels</h4>
<div class="small-6 large-4 columns">
<span class="label">Regular Label</span>
<p>class="label"</p>
</div>
<div class="small-6 large-4 columns">
<span class="radius secondary label">Radius Secondary Label</span>
<p>class="radius secondary label"</p>
</div>
<div class="small-6 large-4 columns">
<span class="round alert label">Round Alert Label</span>
<p>class="round alert label"</p>
</div>
<div class="small-6 large-4 columns">
<span class="warning label">Warning Label</span>
<p>class="warning label"</p>
</div>
<div class="small-6 large-4 end columns">
<span class="success label">Success Label</span>
<p>class="success label"</p>
</div>
</div>
<div class="medium-8 large-4 columns">
<h4>Inlinelist</h4>
<ul class="inline-list">
<li><a href="#">Link 1</a>
</li>
<li><a href="#">Link 2</a>
</li>
<li><a href="#">Link 3</a>
</li>
<li><a href="#">Link 4</a>
</li>
<li><a href="#">Link 5</a>
</li>
</ul>
<span data-tooltip class="has-tip" title="ul list with class='inline-list'">ul class="inline-list"</span>
</div>
</div>
</div>
<!--Navigation-->
<div class="row">
<div class="small-12 columns">
<h3>Navigation</h3>
</div>
<div class="small-12 columns content">
<div class="medium-6 large-3 columns">
<h4>Pagination</h4>
<ul class="pagination">
<li class="arrow unavailable"><a href="">«</a>
</li>
<li class="current"><a href="">1</a>
</li>
<li><a href="">2</a>
</li>
<li class="unavailable"><a href="">…</a>
</li>
<li><a href="">12</a>
</li>
<li><a href="">13</a>
</li>
<li class="arrow"><a href="">»</a>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="ul list with class='pagination'">ul class="pagination"</span>
</li>
<li><span data-tooltip class="has-tip" title="arrow unavailable class">li class="arrow unavailable" </span>
</li>
<li><span data-tooltip class="has-tip" title="current class">li class="current" </span>
</li>
<li><span data-tooltip class="has-tip" title="unavaible class for ellipsis in the middle.">li class="unavailable" </span>
</li>
<li><span data-tooltip class="has-tip" title="arrow class">li class="arrow"</span>
</li>
</ul>
</div>
<div class="medium-6 large-4 columns">
<h4> Sub-Nav</h4>
<dl class="sub-nav">
<dt>Filter:</dt>
<dd class="active"><a href="#">All</a>
</dd>
<dd><a href="#">Active</a>
</dd>
<dd><a href="#">Pending</a>
</dd>
</dl>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="dl with class='sub-nav'">dl class="sub-nav" </span>
</li>
<li><span data-tooltip class="has-tip" title="dt for term">dt</span>
</li>
<li><span data-tooltip class="has-tip" title="dd with class='active' for active items">dd class="active" a href=""</span>
</li>
<li><span data-tooltip class="has-tip" title="dd with link">dd a href=""</span>
</li>
</ul>
</div>
<div class="medium-6 large-5 clearMedium columns">
<h4>Icon Bars</h4>
<div class="icon-bar five-up">
<a class="item">
<img src="img/fi-home.svg">
<label>Home</label>
</a>
<a class="item">
<img src="img/fi-bookmark.svg">
<label>Bookmark</label>
</a>
<a class="item">
<img src="img/fi-info.svg">
<label>Info</label>
</a>
<a class="item">
<img src="img/fi-mail.svg">
<label>Mail</label>
</a>
<a class="item">
<img src="img/fi-like.svg">
<label>Like</label>
</a>
</div>
<p>Specifying the number of items <code>one-up</code> through <code>six-up</code> will ensure the items are evenly spaced.</p>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="Splits icon bar into 5 even columns">div class="icon-bar five-up"</span>
</li>
<li><span data-tooltip class="has-tip" title="link with class 'item'">a class="item" </span>
</li>
<li><span data-tooltip class="has-tip" title="image">img src=""</span>
</li>
</ul>
</div>
<div class="medium-6 large-4 clearLarge columns">
<h4>Breadcrumbs</h4>
<ul class="breadcrumbs">
<li><a href="#">Home</a>
</li>
<li><a href="#">Features</a>
</li>
<li class="unavailable"><a href="#">Gene Splicing</a>
</li>
<li class="current"><a href="#">Cloning</a>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="ul class with 'breadcrumbs'">ul class="breadcrumbs"</span>
</li>
<li><span data-tooltip class="has-tip" title="Unavailable link">li class="unavailable" </span>
</li>
<li><span data-tooltip class="has-tip" title="Current link">li class="current"</span>
</li>
</ul>
<ul class="no-bullet">
<li><span data-tooltip class="has-tip" title="nav with class='breadcrumbs'">nav class="breadcrumbs"</span>
</li>
<li><span data-tooltip class="has-tip" title="Unavailable link">a class="unavailable"</span>
</li>
<li><span data-tooltip class="has-tip" title="Current link">a class="current"</span>
</li>
</ul>
</div>
<div class="medium-6 large-4 clearMedium sideNav columns">
<h4>Side Nav</h4>
<div class="small-4 columns">
<ul class="side-nav">
<li><a href="#">Link 1</a>
</li>
<li class="active"><a href="#">Link 2</a>
</li>
<li><a href="#">Link 3</a>
</li>