-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsink.html
executable file
·1075 lines (923 loc) · 56.2 KB
/
sink.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>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Barricade Style Guide</title>
<meta name="description" content="Barricade's Language, Style Guide, Tone, Vocal Language, Tone.">
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/png" href="assets/img/favicon-152.png" />
<link rel="apple-touch-icon-precomposed" href="assets/img/apple-touch-icon-precomposed.png" />
<link rel="stylesheet" href="assets/css/styleguide.css">
<script src="//use.typekit.net/rls2lvm.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
</head>
<body id="dash" ng-app="app">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<section role="main" class="scroll-container">
<div class="row">
<div class="large-3 medium-4 columns">
<div class="hide-for-small">
<div class="sidebar">
<nav>
<ul class="side-nav">
<li class="heading">Setup</li>
<li><a href="../index.html" data-search="">Getting Started</a></li>
<li><a href="../css.html" data-search="Styles">CSS</a></li>
<li><a href="../sass.html" data-search="Sass">Sass</a></li>
<li><a href="../sass-files.html" data-search="Sass,Sass - What You Get, How to Use Sass">Sass Files</a></li>
<li><a href="../using-sass.html" data-search="Sass,Sass - What You Get, How to Use Sass">Using Sass</a></li>
<li><a href="../applications.html" data-search="Rails,Gem">Applications</a></li>
<li><a href="../javascript.html" data-search="">JavaScript</a></li>
<li><a href="global.html" data-search="Global Styles,Global Mixins,Global Variables,Useful HTML Classes">Global Styles</a></li>
<li class="active"><a href="kitchen_sink.html" data-search="">Kitchen Sink</a></li>
<li><a href="../accessibility.html" data-search="accessibility">Accessibility</a></li>
<li><a href="../upgrading.html" data-search="Migration">Upgrading</a></li>
<li class="divider"></li>
<li class="heading">Structure</li>
<li><a href="../media-queries.html" data-search="Breakpoints">Media Queries</a></li>
<li><a href="visibility.html" data-search="">Visibility</a></li>
<li><a href="grid.html" data-search="">Grid</a></li>
<li><a href="block_grid.html" data-search="">Block Grid</a></li>
<li><a href="interchange.html" data-search="Responsive Images">Interchange Responsive Content <span class="label">JS</span></a></li>
<li><a href="../utility-classes.html" data-search="">Utility Classes</a></li>
<li><a href="../javascript-utilities.html" data-search="">Javascript Utilities</a></li>
<li><a href="rtl.html" data-search="RTL">Right-to-Left Support</a></li>
<li class="divider"></li>
<li class="heading">Navigation</li>
<li><a href="offcanvas.html" data-search="Off Canvas">Off-canvas <span class="label">JS</span></a></li>
<li><a href="topbar.html" data-search="Nav Bar,Navigation,Sticky">Top Bar <span class="label">JS</span></a></li>
<li><a href="icon-bar.html" data-search="">Icon Bar</a></li>
<li><a href="sidenav.html" data-search="">Side Nav</a></li>
<li><a href="magellan.html" data-search="Scrollspy">Magellan Sticky Nav <span class="label">JS</span></a></li>
<li><a href="subnav.html" data-search="">Sub Nav</a></li>
<li><a href="breadcrumbs.html" data-search="Navigation Path,Cookie Crumb">Breadcrumbs</a></li>
<li><a href="pagination.html" data-search="">Pagination</a></li>
<li class="divider"></li>
<li class="heading">Media</li>
<li><a href="orbit.html" data-search="Carousel,Slider,Slideshow">Orbit Slider <span class="label">JS</span></a></li>
<li><a href="thumbnails.html" data-search="Images">Thumbnails</a></li>
<li><a href="clearing.html" data-search="Responsive Lightbox,Lightbox">Clearing Lightbox <span class="label">JS</span></a></li>
<li><a href="flex_video.html" data-search="Responsive Video">Flex Video</a></li>
<li class="divider"></li>
<li class="heading">Forms</li>
<li><a href="forms.html" data-search="">Forms</a></li>
<li><a href="switch.html" data-search="">Switches</a></li>
<li><a href="range_slider.html" data-search="Range Slider">Range Sliders <span class="label">JS</span></a></li>
<li><a href="abide.html" data-search="Form Validation,Field Validation">Abide Validation <span class="label">JS</span></a></li>
<li class="divider"></li>
<li class="heading">Buttons</li>
<li><a href="buttons.html" data-search="">Buttons</a></li>
<li><a href="button_groups.html" data-search="Button Bar">Button Groups</a></li>
<li><a href="split_buttons.html" data-search="">Split Buttons <span class="label">JS</span></a></li>
<li><a href="dropdown_buttons.html" data-search="">Dropdown Buttons <span class="label">JS</span></a></li>
<li class="divider"></li>
<li class="heading">Typography</li>
<li><a href="typography.html" data-search="Typography,Type-setting,Composition">Type</a></li>
<li><a href="inline_lists.html" data-search="Lists">Inline Lists</a></li>
<li><a href="labels.html" data-search="Tags">Labels</a></li>
<li><a href="keystrokes.html" data-search="">Keystrokes</a></li>
<li class="divider"></li>
<li class="heading">Callouts & Prompts</li>
<li><a href="reveal.html" data-search="Modal">Reveal Modal <span class="label">JS</span></a></li>
<li><a href="alert_boxes.html" data-search="Error,Success,Warning">Alerts <span class="label">JS</span></a></li>
<li><a href="panels.html" data-search="Wells">Panels</a></li>
<li><a href="tooltips.html" data-search="Popover">Tooltips <span class="label">JS</span></a></li>
<li><a href="joyride.html" data-search="Tooltip Tour,Guider,Tooltip Walk-through">Joyride <span class="label">JS</span></a></li>
<li class="divider"></li>
<li class="heading">Content</li>
<li><a href="dropdown.html" data-search="">Dropdowns <span class="label">JS</span></a></li>
<li><a href="pricing_tables.html" data-search="">Pricing Tables</a></li>
<li><a href="progress_bars.html" data-search="">Progress Bars</a></li>
<li><a href="tables.html" data-search="">Tables</a></li>
<li><a href="accordion.html" data-search="">Accordion <span class="label">JS</span></a></li>
<li><a href="tabs.html" data-search="">Tabs <span class="label">JS</span></a></li>
<li><a href="equalizer.html" data-search="">Equalizer <span class="label">JS</span></a></li>
<li class="divider"></li>
<li class="heading">Support</li>
<li><a href="../changelog.html" data-search="">Changelog</a></li>
<li><a href="../compatibility.html" data-search="">Compatibility</a></li>
<li class="divider"></li>
<li class="heading">Older Docs</li>
<li><a href="/docs/v/4.3.2/" data-search="">Foundation 4</a></li>
<li><a href="/docs/v/3.2.5/" data-search="">Foundation 3</a></li>
<li><a href="/docs/v/2.2.1/" data-search="">Foundation 2</a></li>
</ul>
</nav>
<section id="jobs">
<h5>Get a job, nerd!</h5>
<script type="text/javascript" src="http://www.zurb.com/jobs/widgets/jobs.js?limit=3"></script><ul>
<li>
<a href="http://zurb.com/jobs/1854-kitcheck-visual-designer" target="_blank">
<span class="positionTitle">Visual Designer</span>
<span class="location"><span class="companyName">Kitcheck</span> in Washington DC</span>
</a> </li>
<li>
<a href="http://zurb.com/jobs/1940-hornet-lead-ux-designer" target="_blank">
<span class="positionTitle">Lead UX Designer</span>
<span class="location"><span class="companyName">Hornet</span> in Remote, Anywhere</span>
</a> </li>
<li>
<a href="http://zurb.com/jobs/1932-schoology-senior-mobile-product-designer" target="_blank">
<span class="positionTitle">Senior Mobile Product Designer</span>
<span class="location"><span class="companyName">Schoology</span> in New York, NY</span>
</a> </li>
</ul>
<p class="via">via <a href="http://www.zurb.com/jobs">Job Board from ZURB</a></p>
</section>
</div>
</div>
</div>
<div class="large-9 medium-8 columns">
<h1 id="kitchen-sink">Kitchen sink</h1>
<h3 class="subheader">This page includes every single Foundation element so that we can make sure things work together smoothly.</h3>
<h4 id="joyride">Joyride</h4>
<div>
<a class="secondary button" id="start-jr" name="start-jr">Start Joyride</a>
<h5 class="so-awesome" id="numero1">Build Joyride with HTML</h5>
<p class="so-awesome" id="numero2">Stop Number 2 for You!</p><!--stops-->
<ol class="joyride-list" data-joyride="">
<li data-class="custom so-awesome" data-id="numero1" data-text="Next">
<h4>Stop #1</h4>
<p>You can control all the details for your tour stop. Any valid HTML will
work inside of Joyride.</p>
</li>
<li data-button="Next" data-id="numero2">
<h4>Stop #2</h4>
<p>Get the details right by styling Joyride with a custom stylesheet!</p>
</li>
<li data-button="Next">
<h4>Stop #3</h4>
<p>It works as a modal too!</p>
</li>
</ol>
</div>
<hr>
<h4 id="alert-boxes">Alert Boxes</h4>
<div data-alert="" class="alert-box radius">
This is a standard alert (div.alert-box.radius).
<a href="" class="close">×</a>
</div>
<div data-alert="" class="alert-box success">
This is a success alert (div.alert-box.success).
<a href="" class="close">×</a>
</div>
<div data-alert="" class="alert-box alert round">
This is an alert (div.alert-box.alert.round).
<a href="" class="close">×</a>
</div>
<div data-alert="" class="alert-box secondary">
This is a secondary alert (div.alert-box.secondary).
<a href="" class="close">×</a>
</div>
<hr>
<h4 id="block-grid">Block Grid</h4>
<ul class="small-block-grid-2 large-block-grid-4">
<li><img class="th" src="../assets/img/examples/comet-th.jpg"></li>
<li><img class="th" src="../assets/img/examples/launch-th.jpg"></li>
<li><img class="th" src="../assets/img/examples/space-th.jpg"></li>
<li><img class="th" src="../assets/img/examples/spacewalk-th.jpg"></li>
</ul>
<hr>
<h4 id="breadcrumbs">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>
<hr>
<h4 id="buttons">Buttons</h4>
<div class="row">
<div class="small-6 large-6 columns">
<a href="#" class="tiny button">.tiny.button</a><br>
<a href="#" class="small button">.small.button</a><br>
<a href="#" class="button">.button</a><br>
<a href="#" class="button expand">.expand</a><br>
</div>
<div class="small-6 large-6 columns">
<a href="#" class="tiny button secondary">.tiny.secondary</a><br>
<a href="#" class="small button success radius">.small.success.radius</a><br>
<a href="#" class="button alert round disabled">.round.disabled</a><br>
</div>
</div>
<hr>
<h4 id="button-groups">Button Groups</h4>
<ul class="button-group">
<li><a href="#" class="small button">Button 1</a></li>
<li><a href="#" class="small button">Button 2</a></li>
<li><a href="#" class="small button">Button 3</a></li>
</ul>
<ul class="button-group radius">
<li><a href="#" class="button secondary">Button 1</a></li>
<li><a href="#" class="button secondary">Button 2</a></li>
<li><a href="#" class="button secondary">Button 3</a></li>
<li><a href="#" class="button secondary">Button 4</a></li>
</ul>
<ul class="button-group round even-3">
<li><a href="#" class="button alert">Button 1</a></li>
<li><a href="#" class="button alert">Button 2</a></li>
<li><a href="#" class="button alert">Button 3</a></li>
</ul>
<ul class="button-group round even-3">
<li><input type="submit" class="button success" value="Button 1"></li>
<li><input type="submit" class="button success" value="Button 2"></li>
<li><input type="submit" class="button success" value="Button 3"></li>
</ul>
<hr>
<h4 id="dropdown-buttons">Dropdown Buttons</h4>
<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 link</a></li>
</ul>
<p><a href="#" data-dropdown="drop" class="tiny button dropdown">Tiny Dropdown Button</a><br>
<a href="#" data-dropdown="drop" class="small secondary radius button dropdown">Small Secondary Radius Dropdown Button</a><br>
<a href="#" data-dropdown="drop" class="button alert round dropdown">Button Alert Round Dropdown Button</a><br>
<a href="#" data-dropdown="drop" class="large success button dropdown">Large Success Dropdown Button</a><br>
<a href="#" data-dropdown="drop" class="large button dropdown expand">Large Expanded Dropdown Button</a></p>
<hr>
<h4 id="split-buttons">Split Buttons</h4>
<p> <a href="#" class="tiny button split">Tiny Split Button <span data-dropdown="drop"></span></a><br>
<a href="#" class="small secondary radius button split">Small Secondary Radius Split Button <span data-dropdown="drop"></span></a><br>
<a href="#" class="button alert round split">Round Alert Split Button <span data-dropdown="drop"></span></a><br>
<a href="#" class="large success button split">Large Success Split Button <span data-dropdown="drop"></span></a></p>
<hr>
<h4 id="switches">Switches</h4>
<div class="small-2 switch tiny">
<input id="a" name="switch-a" type="radio" checked="">
<label for="a" onclick="">Off</label>
<input id="a1" name="switch-a" type="radio">
<label for="a1" onclick="">On</label>
<span></span>
</div>
<div class="small-3 switch small">
<input id="b" name="switch-b" type="radio" checked="">
<label for="b" onclick="">Off</label>
<input id="b1" name="switch-b" type="radio">
<label for="b1" onclick="">On</label>
<span></span>
</div>
<div class="small-4 switch radius">
<input id="c" name="switch-c" type="radio" checked="">
<label for="c" onclick="">Off</label>
<input id="c1" name="switch-c" type="radio">
<label for="c1" onclick="">On</label>
<span></span>
</div>
<div class="small-6 switch large round">
<input id="d" name="switch-d" type="radio" checked="">
<label for="d" onclick="">Off</label>
<input id="d1" name="switch-d" type="radio">
<label for="d1" onclick="">On</label>
<span></span>
</div>
<hr>
<h4 id="clearing">Clearing</h4>
<div>
<div class="clearing-assembled"><div><a href="#" class="clearing-close">×</a><div class="visible-img" style="display: none"><div class="clearing-touch-label"></div><img src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs%3D" alt=""><p class="clearing-caption"></p><a href="#" class="clearing-main-prev"><span></span></a><a href="#" class="clearing-main-next"><span></span></a></div><div class="carousel"><ul class="clearing-thumbs" data-clearing="">
<li><a class="th" href="../assets/img/examples/comet.jpg"><img data-caption="Nulla vitae elit libero, a pharetra augue. Cras mattis consectetur purus sit amet fermentum." src="../assets/img/examples/comet-th-sm.jpg"></a></li>
<li><a class="th" href="../assets/img/examples/earth.jpg"><img src="../assets/img/examples/earth-th-sm.jpg"></a></li>
<li><a class="th" href="../assets/img/examples/launch.jpg"><img data-caption="Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus." src="../assets/img/examples/launch-th-sm.jpg"></a></li>
<li><a class="th" href="../assets/img/examples/satelite.jpg"><img src="../assets/img/examples/satelite-th-sm.jpg"></a></li>
<li><a class="th" href="../assets/img/examples/space.jpg"><img data-caption="Integer posuere erat a ante venenatis dapibus posuere velit aliquet." src="../assets/img/examples/space-th-sm.jpg"></a></li>
</ul></div></div></div>
</div>
<hr>
<h4 id="forms">Forms</h4>
<form>
<fieldset>
<legend>Fieldset</legend>
<div class="row">
<div class="large-12 columns">
<label>Input Label</label>
<input type="text" placeholder="large-12.columns">
</div>
</div>
<div class="row">
<div class="large-4 columns">
<label>Input Label</label>
<input type="text" placeholder="large-4.columns">
</div>
<div class="large-4 columns">
<label>Input Label</label>
<input type="text" placeholder="large-4.columns">
</div>
<div class="large-4 columns">
<div class="row collapse">
<label>Input Label</label>
<div class="small-9 columns">
<input type="text" placeholder="small-9.columns">
</div>
<div class="small-3 columns">
<span class="postfix">.com</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Textarea Label</label>
<textarea placeholder="small-12.columns"></textarea>
</div>
</div>
</fieldset>
</form>
<hr>
<h4 id="dropdowns">Dropdowns</h4>
<p><a class="button" data-dropdown="tinyDrop" href="#">Link Dropdown »</a>
<a class="button" data-dropdown="contentDrop" href="#">Content Dropdown »</a>
<!-- Dropdowns --></p>
<ul class="f-dropdown" data-dropdown-content="" id="tinyDrop">
<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>
<div class="f-dropdown content medium" data-dropdown-content="" id="contentDrop">
<h4>Title</h4>
<p>Some text that people will think is awesome! Some text that people will
think is awesome! Some text that people will think is awesome!</p><img src="../assets/img/examples/launch.jpg">
<p>Launching a Discovery Mission</p><a class="button" href="#">Button</a>
</div>
<hr>
<h4 id="flex-video">Flex Video</h4>
<div class="flex-video">
<iframe width="420" height="315" src="http://www.youtube.com/embed/0_EW8aNgKlA" frameborder="0" allowfullscreen=""></iframe>
</div>
<hr>
<h4 id="inline-lists">Inline Lists</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>
<hr>
<h4 id="keystroke">Keystroke</h4>
<p>To make something pretty, press and hold <kbd>cmd + alt + shift + w + a + !</kbd></p>
<hr>
<h4 id="labels">Labels</h4>
<p>
<span class="label">Regular Label</span><br>
<span class="radius secondary label">Radius Secondary Label</span><br>
<span class="round alert label">Round Alert Label</span><br>
<span class="success label">Success Label</span><br>
</p>
<hr>
<h4 id="magellan">Magellan</h4>
<div class="magellan-container" data-magellan-expedition="fixed" style="">
<dl class="sub-nav">
<dd data-magellan-arrival="build"><a href="#build">Build with HTML</a></dd>
<dd data-magellan-arrival="js"><a href="#js">Using Javascript</a></dd>
</dl>
</div>
<p><a name="build"></a></p>
<p></p><h5 data-magellan-destination="build">Build With Predefined HTML Structure</h5><p></p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Vestibulum id ligula porta felis euismod semper.</p>
<p><a name="js"></a></p>
<p></p><h5 data-magellan-destination="js">Awesome JS Goodness</h5><p></p>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Vestibulum id ligula porta felis euismod semper.</p>
<hr>
<h4 id="orbit">Orbit</h4>
<div class="row">
<div class="large-12 columns">
<div class="orbit-container"><ul id="featured1" data-orbit="" data-options="timer_speed:5000;" class="orbit-slides-container" style="height: 280px;">
<li class="" style="z-index: 2; margin-left: 100%;">
<img src="http://foundation.zurb.com/docs/assets/img/examples/satelite-orbit.jpg">
<div class="orbit-caption">
Caption One. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
</div>
</li>
<li class="" style="z-index: 2; margin-left: 100%;">
<img src="http://foundation.zurb.com/docs/assets/img/examples/andromeda-orbit.jpg">
<div class="orbit-caption">
Caption Two. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
</div>
</li>
<li class="active" style="z-index: 4; margin-left: 0%;">
<img src="http://foundation.zurb.com/docs/assets/img/examples/launch-orbit.jpg">
<div class="orbit-caption">
Caption Three. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
</div>
</li>
</ul><a href="#" class="orbit-prev"><span></span></a><a href="#" class="orbit-next"><span></span></a><div class="orbit-timer"><span></span><div class="orbit-progress" style="width: 70.38%; overflow: hidden;"></div></div><div class="orbit-slide-number"><span>3</span> of <span>3</span></div><div class="orbit-bullets-container"><ol class="orbit-bullets"><li data-orbit-slide="0" class=""></li><li data-orbit-slide="1" class=""></li><li data-orbit-slide="2" class="active"></li></ol></div></div>
</div>
</div>
<hr>
<h4 id="pagination">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><a href="">3</a></li>
<li><a href="">4</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>
<hr>
<h4 id="panels">Panels</h4>
<div class="row">
<div class="large-6 columns">
<div class="panel">
<h5>This is a regular panel.</h5>
<p>It has an easy to override visual style, and is appropriately subdued.</p>
</div>
</div>
<div class="large-6 columns">
<div class="panel callout radius">
<h5>This is a radius callout panel.</h5>
<p>It's a little ostentatious, but useful for important content.</p>
</div>
</div>
<p></p></div><p></p>
<h4 id="pricing-tables">Pricing Tables</h4>
<div class="row">
<div class="large-4 columns">
<ul class="pricing-table">
<li class="title">Standard</li>
<li class="price">$99.99</li>
<li class="description">An awesome description</li>
<li class="bullet-item">1 Database</li>
<li class="bullet-item">5GB Storage</li>
<li class="bullet-item">20 Users</li>
<li class="cta-button"><a class="button" href="#">Buy Now</a></li>
</ul>
</div>
</div>
<hr>
<h4 id="progress-bars">Progress Bars</h4>
<div class="progress large-6"><span class="meter" style="width: 40%"></span></div>
<div class="radius progress success large-8"><span class="meter" style="width: 80%"></span></div>
<div class="nice round progress alert large-10"><span class="meter" style="width: 30%"></span></div>
<div class="nice secondary progress"><span class="meter" style="width: 50%"></span></div>
<hr>
<h4 id="reveal">Reveal</h4>
<p><a href="#" data-reveal-id="firstModal" class="radius button">Example Modal…</a>
<a href="#" data-reveal-id="videoModal" class="radius button">Example Video Modal…</a></p>
<!-- Reveal Modals begin -->
<div id="firstModal" class="reveal-modal" data-reveal="">
<h2>This is a modal.</h2>
<p>Reveal makes these very easy to summon and dismiss. The close button is simply an anchor with a unicode character icon and a class of <code>close-reveal-modal</code>. Clicking anywhere outside the modal will also dismiss it.</p>
<p>Finally, if your modal summons another Reveal modal, the plugin will handle that for you gracefully.</p>
<p><a href="#" data-reveal-id="secondModal" class="secondary button">Second Modal…</a></p>
<a class="close-reveal-modal">×</a>
</div>
<div id="secondModal" class="reveal-modal" data-reveal="">
<h2>This is a second modal.</h2>
<p>See? It just slides into place after the first modal. Very handy when you need subsequent dialogs, or when a modal option impacts or requires another decision.</p>
<a class="close-reveal-modal">×</a>
</div>
<div id="videoModal" class="reveal-modal large" data-reveal="">
<h2>This modal has video</h2>
<div class="flex-video">
<iframe width="420" height="315" src="//www.youtube.com/embed/aiBt44rrslw" frameborder="0" allowfullscreen=""></iframe>
</div>
<a class="close-reveal-modal">×</a>
</div>
<!-- Reveal Modals end -->
<hr>
<h4 id="sliders">Sliders</h4>
<div class="range-slider" data-slider="50">
<span class="range-slider-handle" aria-valuemin="0" aria-valuemax="100" aria-valuenow="50" style="-webkit-transform: translateX(452px); transform: translateX(452px);"></span>
<span class="range-slider-active-segment" style="width: 50%;"></span>
<input type="hidden" value="50">
</div>
<div class="range-slider radius" data-slider="50">
<span class="range-slider-handle" aria-valuemin="0" aria-valuemax="100" aria-valuenow="50" style="-webkit-transform: translateX(452px); transform: translateX(452px);"></span>
<span class="range-slider-active-segment" style="width: 50%;"></span>
<input type="hidden" value="50">
</div>
<div class="range-slider round" data-slider="50">
<span class="range-slider-handle" aria-valuemin="0" aria-valuemax="100" aria-valuenow="50" style="-webkit-transform: translateX(452px); transform: translateX(452px);"></span>
<span class="range-slider-active-segment" style="width: 50%;"></span>
<input type="hidden" value="50">
</div>
<div class="range-slider" data-slider="40" data-options="step: 20;">
<span class="range-slider-handle" aria-valuemin="0" aria-valuemax="100" aria-valuenow="40" style="-webkit-transform: translateX(361.4px); transform: translateX(361.4px);"></span>
<span class="range-slider-active-segment" style="width: 40%;"></span>
<input type="hidden" value="40">
</div>
<hr>
<h4 id="accordion">Accordion</h4>
<ul class="accordion" data-accordion="">
<li class="accordion-navigation">
<a href="#panel1a" aria-expanded="true">Accordion 1</a>
<div id="panel1a" class="content active">
<ul class="small-block-grid-2 large-block-grid-3 ">
<li><img src="http://placehold.it/350x150"></li>
<li><img src="http://placehold.it/350x150"></li>
<li><img src="http://placehold.it/350x150"></li>
</ul>
</div>
</li>
<li class="accordion-navigation">
<a href="#panel2a" aria-expanded="false">Accordion 2</a>
<div id="panel2a" class="content">
<div class="row">
<div class="small-6 columns">
<p>Panel 2. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
<div class="small-6 columns">
<img src="http://placehold.it/350x150">
</div>
</div>
</div></li>
<li class="accordion-navigation">
<a href="#panel3a" aria-expanded="false">Accordion 3</a>
<div id="panel3a" class="content">
Panel 3. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</div>
</li>
</ul>
<hr>
<h4 id="tabs">Tabs</h4>
<dl class="tabs" data-tab="">
<dd class="active"><a href="#panel2-1">Tab 1</a></dd>
<dd><a href="#panel2-2">Tab 2</a></dd>
<dd><a href="#panel2-3">Tab 3</a></dd>
<dd><a href="#panel2-4">Tab 4</a></dd>
</dl>
<div class="tabs-content">
<div class="content active" id="panel2-1">
<p>First panel content goes here...</p>
</div>
<div class="content" id="panel2-2">
<p>Second panel content goes here...</p>
</div>
<div class="content" id="panel2-3">
<p>Third panel content goes here...</p>
</div>
<div class="content" id="panel2-4">
<p>Fourth panel content goes here...</p>
</div>
</div>
<dl class="tabs vertical" data-tab="">
<dd class="active"><a href="#panel1a">Tab 1</a></dd>
<dd><a href="#panel2a">Tab 2</a></dd>
<dd><a href="#panel3a">Tab 3</a></dd>
<dd><a href="#panel4a">Tab 4</a></dd>
</dl>
<div class="tabs-content vertical">
<div class="content active" id="panel1a">
<p>Panel 1 content goes here.</p>
</div>
<div class="content" id="panel2a">
<p>Panel 2 content goes here.</p>
</div>
<div class="content" id="panel3a">
<p>Panel 3 content goes here.</p>
</div>
<div class="content" id="panel4a">
<p>Panel 4 content goes here.</p>
</div>
</div>
<hr>
<h4 id="side-nav">Side Nav</h4>
<div class="row">
<div class="large-4 columns end">
<ul class="side-nav">
<li class="active"><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li class="divider"></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
</div>
</div>
<hr>
<h4 id="sub-nav">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>
<dd><a href="#">Suspended</a></dd>
</dl>
<hr>
<h4 id="tables">Tables</h4>
<table>
<thead>
<tr>
<th width="200">Table Header</th>
<th>Table Header</th>
<th width="150">Table Header</th>
<th width="150">Table Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Content Goes Here</td>
<td>This is longer content Donec id elit non mi porta gravida at eget metus.</td>
<td>Content Goes Here</td>
<td>Content Goes Here</td>
</tr>
<tr>
<td>Content Goes Here</td>
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
<td>Content Goes Here</td>
<td>Content Goes Here</td>
</tr>
<tr>
<td>Content Goes Here</td>
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
<td>Content Goes Here</td>
<td>Content Goes Here</td>
</tr>
</tbody>
</table>
<hr>
<h4 id="thumbnails">Thumbnails</h4>
<p><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/earth-th-sm.jpg"><img class="th" src="http://foundation.zurb.com/docs/assets/img/examples/space-th-sm.jpg"></p>
<hr>
<h4 id="tooltips">Tooltips</h4>
<p>The tooltips can be positioned on the <span data-tooltip="" class="has-tip" data-width="210" data-selector="tooltip-i7x8d10s0" aria-describedby="tooltip-i7x8d10s0" title="">"tip-bottom"</span>, which is the default position, <span data-tooltip="" class="has-tip tip-top noradius" data-width="210" data-selector="tooltip-i7x8d10s1" aria-describedby="tooltip-i7x8d10s1" title="">"tip-top" (hehe)</span>, <span data-tooltip="left" class="has-tip tip-left" data-width="90" title="">"tip-left"</span>, or <span data-tooltip="right" class="has-tip tip-right" data-width="120" title="">"tip-right"</span> of the target element by adding the appropriate class to them. You can even add your own custom class to style each tip differently. On a small device, the tooltips are full width and bottom aligned.</p>
<hr>
<h4 id="top-bar">Top Bar</h4>
<nav class="top-bar" data-topbar="">
<ul class="title-area">
<!-- Title Area -->
<li class="name">
<h1>
<a href="#">
Top Bar Title
</a>
</h1>
</li>
<li class="toggle-topbar menu-icon"><a href="#"><span>menu</span></a></li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li class="divider"></li>
<li class="has-dropdown not-click">
<a href="#">Main Item 1</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="javascript:void(0)">Back</a></h5></li><li class="parent-link hide-for-large-up"><a class="parent-link js-generated" href="#">Main Item 1</a></li>
<li><label>Section Name</label></li>
<li class="has-dropdown not-click">
<a href="#" class="">Has Dropdown, Level 1</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="javascript:void(0)">Back</a></h5></li><li class="parent-link hide-for-large-up"><a class="parent-link js-generated" href="#">Has Dropdown, Level 1</a></li>
<li><a href="#">Dropdown Options</a></li>
<li><a href="#">Dropdown Options</a></li>
<li><a href="#">Level 2</a></li>
<li><a href="#">Subdropdown Option</a></li>
<li><a href="#">Subdropdown Option</a></li>
<li><a href="#">Subdropdown Option</a></li>
</ul>
</li>
<li><a href="#">Dropdown Option</a></li>
<li><a href="#">Dropdown Option</a></li>
<li class="divider"></li>
<li><label>Section Name</label></li>
<li><a href="#">Dropdown Option</a></li>
<li><a href="#">Dropdown Option</a></li>
<li><a href="#">Dropdown Option</a></li>
<li class="divider"></li>
<li><a href="#">See all →</a></li>
</ul>
</li>
<li class="divider"></li>
<li class="has-dropdown not-click">
<a href="#">Main Item 2</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="javascript:void(0)">Back</a></h5></li><li class="parent-link hide-for-large-up"><a class="parent-link js-generated" href="#">Main Item 2</a></li>
<li><a href="#">Dropdown Option</a></li>
<li><a href="#">Dropdown Option</a></li>
<li><a href="#">Dropdown Option</a></li>
<li class="divider"></li>
<li><a href="#">See all →</a></li>
</ul>
</li>
</ul>
</section></nav>
<!-- End Top Bar -->
<hr>
<h4 id="type">Type</h4>
<div class="type-demo">
<h1>h1. This is a very large header.</h1>
<h2>h2. This is a large header.</h2>
<h3>h3. This is a medium header.</h3>
<h4>h4. This is a moderate header.</h4>
<h5>h5. This is a small header.</h5>
<h6>h6. This is a tiny header.</h6>
<br>
<h1 class="subheader">h1. subheader</h1>
<h2 class="subheader">h2. subheader</h2>
<h3 class="subheader">h3. subheader</h3>
<h4 class="subheader">h4. subheader</h4>
<h5 class="subheader">h5. subheader</h5>
<h6 class="subheader">h6. subheader</h6>
<hr>
<h3>Definition List</h3>
<h5>Definition lists are great for small block of copy that describe the header</h5>
<dl>
<dt>Lower cost</dt>
<dd>The new version of this product costs significantly less than the previous one!</dd>
<dt>Easier to use</dt>
<dd>We've changed the product so that it's much easier to use!</dd>
<dt>Safe for kids</dt>
<dd>You can leave your kids alone in a room with this product and they won't get hurt (not a guarantee).</dd>
</dl>
<hr>
<h5>Un-ordered lists are great for making quick outlines bulleted.</h5>
<ul class="disc">
<li>List item with a much longer description or more content.</li>
<li>List item</li>
<li>List item
<ul>
<li>Nested List Item</li>
<li>Nested List Item</li>
<li>Nested List Item</li>
</ul>
</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
<h5>Ordered lists are great for lists that need order, duh.</h5>
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ol>
<br>
<h5>Blockquote</h5>
<blockquote>I do not fear computers. I fear the lack of them. Maecenas faucibus mollis interdum. Aenean lacinia bibendum nulla sed consectetur.<cite>Isaac Asimov</cite></blockquote>
<br>
<h5>Vcard</h5>
<ul class="vcard">
<li class="fn">Gaius Baltar</li>
<li class="street-address">123 Colonial Ave.</li>
<li class="locality">Caprica City</li>
<li><span class="state">Caprica</span>, <span class="zip">12345</span></li>
<li class="email"><a href="#">g.baltar@example.com<script cf-hash="f9e31" type="text/javascript">
/* <![CDATA[ */!function(){try{var t="currentScript"in document?document.currentScript:function(){for(var t=document.getElementsByTagName("script"),e=t.length;e--;)if(t[e].getAttribute("cf-hash"))return t[e]}();if(t&&t.previousSibling){var e,r,n,i,c=t.previousSibling,a=c.getAttribute("data-cfemail");if(a){for(e="",r=parseInt(a.substr(0,2),16),n=2;a.length-n;n+=2)i=parseInt(a.substr(n,2),16)^r,e+=String.fromCharCode(i);e=document.createTextNode(e),c.parentNode.replaceChild(e,c)}}}catch(u){}}();/* ]]> */</script></a></li>
</ul>
</div>
<hr>
<h4 id="visibility-classes">Visibility Classes</h4>
<h5 id="screen-size-visibility-control-show-">Screen Size Visibility Control (Show)</h5>
<p>The following text should describe the screen size you're using:</p>
<div class="row">
<div class="large-6 columns">
<h4>HTML</h4>
<pre><code class="language-html"><div class="code-container"><span class="tag"><<span class="title">p</span> <span class="attribute">class</span>=<span class="value">"panel"</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-small-only"</span>></span>This text is shown only on a small screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-medium-up"</span>></span>This text is shown on medium screens and up.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-medium-only"</span>></span>This text is shown only on a medium screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-large-up"</span>></span>This text is shown on large screens and up.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-large-only"</span>></span>This text is shown only on a large screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-xlarge-up"</span>></span>This text is shown on xlarge screens and up.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-xlarge-only"</span>></span>This text is shown only on an xlarge screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-xxlarge-up"</span>></span>This text is shown on xxlarge screens and up.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"></<span class="title">p</span>></span></div></code></pre>
</div>
<div class="large-6 columns">
<h4>Rendered HTML</h4>
<p class="panel">
<strong class="show-for-small-only">This text is shown only on a small screen.</strong>
<strong class="show-for-medium-up">This text is shown on medium screens and up.</strong>
<strong class="show-for-medium-only">This text is shown only on a medium screen.</strong>
<strong class="show-for-large-up">This text is shown on large screens and up.</strong>
<strong class="show-for-large-only">This text is shown only on a large screen.</strong>
<strong class="show-for-xlarge-up">This text is shown on xlarge screens and up.</strong>
<strong class="show-for-xlarge-only">This text is shown only on an xlarge screen.</strong>
<strong class="show-for-xxlarge-up">This text is shown on xxlarge screens and up.</strong>
</p>
</div>
</div>
<h5 id="screen-size-visibility-control-hide-">Screen Size Visibility Control (Hide)</h5>
<p>The following text should describe the screen size you aren't using:</p>
<div class="row">
<div class="large-6 columns">
<h4>HTML</h4>
<pre><code class="language-html"><div class="code-container"><span class="tag"><<span class="title">p</span> <span class="attribute">class</span>=<span class="value">"panel"</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-small-only"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on a small screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-medium-up"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on a medium, large, xlarge, or xxlarge screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-medium-only"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on a medium screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-large-up"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on a large, xlarge, or xxlarge screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-large-only"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on a large screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-xlarge-up"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on an xlarge screen and up.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-xlarge-only"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on an xlarge screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-xxlarge-up"</span>></span>You are <span class="tag"><<span class="title">em</span>></span>not<span class="tag"></<span class="title">em</span>></span> on an xxlarge screen.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"></<span class="title">p</span>></span></div></code></pre>
</div>
<div class="large-6 columns">
<h4>Rendered HTML</h4>
<p class="panel">
<strong class="hide-for-small-only">You are <em>not</em> on a small screen.</strong>
<strong class="hide-for-medium-up">You are <em>not</em> on a medium, large, xlarge, or xxlarge screen.</strong>
<strong class="hide-for-medium-only">You are <em>not</em> on a medium screen.</strong>
<strong class="hide-for-large-up">You are <em>not</em> on a large, xlarge, or xxlarge screen.</strong>
<strong class="hide-for-large-only">You are <em>not</em> on a large screen.</strong>
<strong class="hide-for-xlarge-up">You are <em>not</em> on an xlarge screen and up.</strong>
<strong class="hide-for-xlarge-only">You are <em>not</em> on an xlarge screen.</strong>
<strong class="hide-for-xxlarge-up">You are <em>not</em> on an xxlarge screen.</strong>
</p>
</div>
</div>
<h5 id="orientation-detection">Orientation Detection</h5>
<p>The following text should describe the device orientation you're using:</p>
<div class="row">
<div class="large-6 columns">
<h4>HTML</h4>
<pre><code class="language-html"><div class="code-container"><span class="tag"><<span class="title">p</span> <span class="attribute">class</span>=<span class="value">"panel"</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-landscape"</span>></span>You are in landscape orientation.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-portrait"</span>></span>You are in portrait orientation.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"></<span class="title">p</span>></span></div></code></pre>
</div>
<div class="large-6 columns">
<h4>Rendered HTML</h4>
<p class="panel">
<strong class="show-for-landscape">You are in landscape orientation.</strong>
<strong class="show-for-portrait">You are in portrait orientation.</strong>
</p>
</div>
</div>
<h5 id="touch-detection">Touch Detection</h5>
<p>The following text should describe if you're using a touch device:</p>
<div class="row">
<div class="large-6 columns">
<h4>HTML</h4>
<pre><code class="language-html"><div class="code-container"><span class="tag"><<span class="title">p</span> <span class="attribute">class</span>=<span class="value">"panel"</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"show-for-touch"</span>></span>You are on a touch-enabled device.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"><<span class="title">strong</span> <span class="attribute">class</span>=<span class="value">"hide-for-touch"</span>></span>You are not on a touch-enabled device.<span class="tag"></<span class="title">strong</span>></span>
<span class="tag"></<span class="title">p</span>></span></div></code></pre>
</div>
<div class="large-6 columns">
<h4>Rendered HTML</h4>
<p class="panel">
<strong class="show-for-touch">You are on a touch-enabled device.</strong>