-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
2216 lines (1987 loc) · 75 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><head><meta charset="UTF-8"><title>SurveyMonkey Design Patterns</title><link rel="stylesheet" href="css/normalize.css"><link rel="stylesheet" href="css/typography.css"><link rel="stylesheet" href="css/toolbox.css"><link rel="stylesheet" href="css/patterns-structure.css"><link rel="stylesheet" href="css/patterns-structure-mq.css"><link rel="stylesheet" href="css/accordion.css"><link rel="stylesheet" href="css/animations.css"><link rel="stylesheet" href="css/buttons.css"><link rel="stylesheet" href="css/button-menus.css"><link rel="stylesheet" href="css/colors.css"><link rel="stylesheet" href="css/dropdowns.css"><link rel="stylesheet" href="css/forms.css"><link rel="stylesheet" href="css/function-lists.css"><link rel="stylesheet" href="css/grids.css"><link rel="stylesheet" href="css/help-popout.css"><link rel="stylesheet" href="css/icons.css"><link rel="stylesheet" href="css/notifications.css"><link rel="stylesheet" href="css/scroll-follows.css"><link rel="stylesheet" href="css/spinners.css"><link rel="stylesheet" href="css/sliders.css"><link rel="stylesheet" href="css/tables.css"><link rel="stylesheet" href="css/tabs.css"></head><body id="top"><div class="notification"><strong>Please note:</strong> VERY MUCH a work in progress. Do not use.
<a href="https://surveymonkey.wufoo.com/forms/feedback-on-design-patterns/">Feedback</a></div><header class="patterns-header"><div class="container"><h1><a href="#" class="logo">SurveyMonkey</a> Design Patterns
</h1><ul class="group"><li><a href="#accordion">Accordion</a></li><li><a href="#animations">Animations</a></li><li><a href="#buttons">Buttons</a></li><li><a href="#colors">Color Palette</a></li><li><a href="#dropdowns">Dropdown Menus</a></li><li><a href="#forms">Form Elements</a></li><li><a href="#function-lists">Function Lists</a></li><li><a href="#help">Help Popouts</a></li><li><a href="#grids">Grids</a></li><li><a href="#icons">Icons</a></li><li><a href="#lightboxes">Lightboxes</a></li><li><a href="#notifications">Notifications</a></li><li><a href="#scroll-follow">Scroll-Follow Content</a></li><li><a href="#slides">Sliders</a></li><li><a href="#spinners">Spinners</a></li><li><a href="#sprite">Sprite</a></li><li><a href="#tables">Tables</a></li><li><a href="#tabs">Tabs</a></li><li><a href="#typography">Typography</a></li></ul></div></header><section class="container group demo-accordion"><h2 id="accordion">Accordion <a href="#top" class="back-to-top">^ Back to Top</a></h2>
<div class="about">
<p>What's perfect pitch?</p>
<p>When you throw an accordion into the middle of a pond and not hit any of the ducks.</p>
</div>
<div class="info">
<table class="equal vtop">
<tr>
<th></th>
<th>Multiple</th>
<th>Single</th>
</tr>
<tr>
<th>Flexible Growth</th>
<td>
<aside class="accordion multiple init">
<div class="key open" id="key-1">
<h3>
<a class="press" href="#panel-1">First Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-1-section">
<div class="tabs pillbox">
<nav class="thirds group">
<a class="active" href="#panel-20">Tab One</a>
<a href="#panel-21">Tab Two</a>
<a href="#panel-22">Tab Three</a>
</nav>
<div class="panels">
<div class="panel open" id="panel-20">
<p>Biltong swine venison boudin tri-tip. Turkey ham hock tenderloin boudin, capicola fatback ham brisket rump tongue frankfurter drumstick pork belly.</p>
</div>
<div class="panel" id="panel-21">
<p>strip steak salami, short loin turducken swine ham cow ball tip beef. Turkey drumstick pastrami capicola chicken, boudin short loin. Fatback pork belly kielbasa short ribs. Ground round fatback rump, shoulder brisket turducken turkey corned beef venison.</p>
</div>
<div class="panel" id="panel-22">
<p>Short ribs bacon pastrami tri-tip shoulder. Hamburger prosciutto short ribs kielbasa, sausage t-bone shank ham pork chop sirloin bresaola fatback turkey.</p>
</div>
</div>
</div>
</section>
</div><!-- key -->
<div class="key" id="key-2">
<h3>
<a class="press" href="#key-2-section">Second Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-2-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs. Jerky capicola bacon shank bresaola. Meatloaf rump t-bone, corned beef strip steak chuck hamburger pork chop sirloin ham hock drumstick ham spare ribs short ribs. Capicola sausage tri-tip turkey t-bone, venison chicken. Rump filet mignon flank kielbasa, biltong tenderloin strip steak hamburger chuck shankle tail shank.</p>
</section><!-- #ac2 -->
</div><!-- ac2 key -->
<div class="key" id="key-2">
<h3>
<a class="press" href="#key-3-section">Third Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-3-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs. Jerky capicola bacon shank bresaola. Meatloaf rump t-bone, corned beef strip steak chuck hamburger pork chop sirloin ham hock drumstick ham spare ribs short ribs. Capicola sausage tri-tip turkey t-bone, venison chicken. Rump filet mignon flank kielbasa, biltong tenderloin strip steak hamburger chuck shankle tail shank.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs. Jerky capicola bacon shank bresaola. Meatloaf rump t-bone, corned beef strip steak chuck hamburger pork chop sirloin ham hock drumstick ham spare ribs short ribs. Capicola sausage tri-tip turkey t-bone, venison chicken. Rump filet mignon flank kielbasa, biltong tenderloin strip steak hamburger chuck shankle tail shank.</p>
</section>
</div>
</aside> <!-- accordion multiple flexible -->
</td>
<td>
<aside class="accordion single init">
<div class="key" id="key-4">
<h3>
<a class="press" href="#key-4-section">First Key</a>
</h3>
<section id="key-4-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
<div class="key" id="key-5">
<h3>
<a class="press" href="#key-5-section">Second Key</a>
</h3>
<section id="key-5-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
<div class="key" id="key-6">
<h3>
<a class="press" href="#key-6-section">Third Key</a>
</h3>
<section id="key-6-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
</aside><!-- accordion single flexible -->
</td>
</tr>
<tr>
<th>Static Growth</th>
<td>
<aside class="accordion static multiple init">
<div class="key" id="key-7">
<h3>
<a class="press" href="key-7-section">I am key #1</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-7-section">
I AM A PANEL
</section>
</div>
<div class="key" id="key-8">
<h3>
<a class="press" href="key-8-section">Second Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-8-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
<div class="key" id>
<h3>
<a class="press" href="#panel-9">Third Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="panel-9">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
</aside><!-- accordion multiple static -->
</td>
<td>
<aside class="accordion static single init">
<div class="key" id="key-10">
<h3>
<a class="press" href="#key-10-section">First Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-10-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
<div class="key" id="key-11">
<h3>
<a class="press" href="key-11-section">Second Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-11-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
<div class="key" id="key-12">
<h3>
<a class="press" href="key-12-section">Scrolling Content</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-12-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section>
</div>
</aside><!-- accordion single static -->
</td>
</tr>
<tr>
<th>Flexible (Light)</th>
<td colspan="2">
<aside class="accordion multiple light init">
<div class="key" id="key-14">
<h3>
<a class="press" href="#key-14-section">First Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-14-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs.</p>
</section><!-- #ac1 -->
</div><!-- ac3 key -->
<div class="key" id="key-15">
<h3>
<a class="press" href="#key-15-section">Second Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-15-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs. Jerky capicola bacon shank bresaola. Meatloaf rump t-bone, corned beef strip steak chuck hamburger pork chop sirloin ham hock drumstick ham spare ribs short ribs. Capicola sausage tri-tip turkey t-bone, venison chicken. Rump filet mignon flank kielbasa, biltong tenderloin strip steak hamburger chuck shankle tail shank.</p>
</section>
</div>
<div class="key" id="key-16">
<h3>
<a class="press" href="#key-16-section">Third Key</a>
<div class="q q-on-dark">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite presentation software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</h3>
<section id="key-16-section">
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs. Jerky capicola bacon shank bresaola. Meatloaf rump t-bone, corned beef strip steak chuck hamburger pork chop sirloin ham hock drumstick ham spare ribs short ribs. Capicola sausage tri-tip turkey t-bone, venison chicken. Rump filet mignon flank kielbasa, biltong tenderloin strip steak hamburger chuck shankle tail shank.</p>
<p>Bacon ipsum dolor sit amet ham fatback venison, bacon pork loin pancetta pork tongue leberkäse pig short loin chicken. Chuck pancetta rump shoulder pork loin. Ground round turkey pig, prosciutto swine biltong jowl ribeye spare ribs. Jerky capicola bacon shank bresaola. Meatloaf rump t-bone, corned beef strip steak chuck hamburger pork chop sirloin ham hock drumstick ham spare ribs short ribs. Capicola sausage tri-tip turkey t-bone, venison chicken. Rump filet mignon flank kielbasa, biltong tenderloin strip steak hamburger chuck shankle tail shank.</p>
</section>
</div>
</aside><!-- accordion multiple flexible light -->
</td>
</tr>
</table>
</div></section><section class="container group animations"><h2 id="animations">Animations <a href="#top" class="back-to-top">^ Back to Top</a></h2>
<div class="about">
<p>Reusable bits of common animations. These are CSS based, but could be switched to jQuery.</p>
</div>
<div class="info">
<table>
<tr>
<td class="narrow"><div class="animation-example an" id="shake-target"></div></td>
<td><button id="shake-button">Shake</button> applies class .an-shake</td>
</tr>
<tr>
<td><div class="animation-example an disappear" id="fade-in-target"></div></td>
<td><button id="fade-in-button">Fade In</button> start with class .disappear - gain class .an-fade-in<br>
<button id="fade-out-button">Fade Out</button> add class .an-fade-out
</td>
</tr>
<tr>
<td><div class="animation-example an an-flash"></div></td>
<td>Flash</td>
</tr>
</table>
</div></section><section id="load-buttons" class="container group demo-buttons"><h2 id="buttons">Buttons <a href="#top" class="back-to-top">^ Back to Top</a></h2>
<div class="about">
<h5>Standard Class</h5>
<ul>
<li><code>btn</code></li>
</ul>
<h5>Size Variations</h5>
<ul>
<li><code>btn-small</code></li>
<li><code>btn-large</code></li>
</ul>
<h5>Style Variations</h5>
<ul>
<li><code>no-border</code></li>
<li><code>no-shadow</code></li>
<li><code>emphasize</code> (bold)</li>
</ul>
<h5>Colors</h5>
<ul>
<li><code>teal</code></li>
<li><code>grey</code></li>
<li><code>dark-grey</code></li>
<li><code>yellow</code></li>
<li><code>green</code></li>
</ul>
</div>
<div class="info">
<table class="row-highlighting">
<caption><span>Standard Buttons</span></caption>
<thead>
<tr>
<th> </th>
<th>btn</th>
<th>btn-small</th>
<th>btn-large</th>
<th>no-emphasize</th>
<th>no-border</th>
<th>shadow</th>
</tr>
</thead>
<tbody>
<tr>
<th>
btn
</th>
<td>
<a href="#" class="btn">Button</a>
</td>
<td>
<a href="#" class="btn btn-small">Button</a>
</td>
<td>
<a href="#" class="btn btn-large">Button</a>
</td>
<td>
<a href="#" class="btn no-emphasize">Button</a>
</td>
<td>
<a href="#" class="btn no-border">Button</a>
</td>
<td>
<a href="#" class="btn shadow">Button</a>
</td>
</tr>
<tr>
<th>
dark-grey
</th>
<td>
<a href="#" class="btn dark-grey">Button</a>
</td>
<td>
<a href="#" class="btn dark-grey btn-small">Button</a>
</td>
<td>
<a href="#" class="btn dark-grey btn-large">Button</a>
</td>
<td>
<a href="#" class="btn dark-grey no-emphasize">Button</a>
</td>
<td>
<a href="#" class="btn dark-grey no-border">Button</a>
</td>
<td>
<a href="#" class="btn dark-grey shadow">Button</a>
</td>
</tr>
<tr>
<th>
teal
</th>
<td>
<a href="#" class="btn teal">Button</a>
</td>
<td>
<a href="#" class="btn teal btn-small">Button</a>
</td>
<td>
<a href="#" class="btn teal btn-large">Button</a>
</td>
<td>
<a href="#" class="btn teal no-emphasize">Button</a>
</td>
<td>
<a href="#" class="btn teal no-border">Button</a>
</td>
<td>
<a href="#" class="btn teal shadow">Button</a>
</td>
</tr>
<tr>
<th>
yellow
</th>
<td>
<a href="#" class="btn yellow">Button</a>
</td>
<td>
<a href="#" class="btn yellow btn-small">Button</a>
</td>
<td>
<a href="#" class="btn yellow btn-large">Button</a>
</td>
<td>
<a href="#" class="btn yellow no-emphasize">Button</a>
</td>
<td>
<a href="#" class="btn yellow no-border">Button</a>
</td>
<td>
<a href="#" class="btn yellow shadow">Button</a>
</td>
</tr>
<tr>
<th>
green
</th>
<td>
<a href="#" class="btn green">Button</a>
</td>
<td>
<a href="#" class="btn green btn-small">Button</a>
</td>
<td>
<a href="#" class="btn green btn-large">Button</a>
</td>
<td>
<a href="#" class="btn green no-emphasize">Button</a>
</td>
<td>
<a href="#" class="btn green no-border">Button</a>
</td>
<td>
<a href="#" class="btn green shadow">Button</a>
</td>
</tr>
</tbody>
</table>
<table class="row-highlighting">
<caption><span>Arrow Buttons</span></caption>
<tr>
<th> </th>
<th>Right</th>
<th>Left</th>
<th>Up</th>
<th>Down</th>
</tr>
<tr>
<th>
small light
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-horiz btn-arrow-small-right-light teal btn-small">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-small-horiz btn-arrow-small-left-light teal btn-small"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-up-light teal btn-small">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-down-light teal btn-small">Button<span></span></a>
</tr>
<tr>
<th>
small medium
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-horiz btn-arrow-small-right-medium btn-small">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-small-horiz btn-arrow-small-left-medium btn-small"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-up-medium btn-small">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-down-medium btn-small">Button<span></span></a>
</td>
</tr>
<tr>
<th>
small dark
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-horiz btn-arrow-small-right-dark btn-small">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-small-horiz btn-arrow-small-left-dark btn-small"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-up-dark btn-small">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-down-dark btn-small">Button<span></span></a>
</td>
</tr>
<tr>
<th>
standard light
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-horiz btn-arrow-standard-right-light teal">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-standard-horiz btn-arrow-standard-left-light teal"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-vert btn-arrow-standard-up-light teal">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-vert btn-arrow-standard-down-light teal">Button<span></span></a>
</tr>
<tr>
<th>
standard medium
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-horiz btn-arrow-standard-right-medium dark-grey">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-standard-horiz btn-arrow-standard-left-medium dark-grey"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-vert btn-arrow-standard-up-medium dark-grey">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-vert btn-arrow-standard-down-medium dark-grey">Button<span></span></a>
</td>
</tr>
<tr>
<th>
standard dark
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-horiz btn-arrow-standard-right-dark">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-standard-horiz btn-arrow-standard-left-dark"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-vert btn-arrow-standard-up-dark">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-standard-vert btn-arrow-standard-down-dark">Button<span></span></a>
</td>
</tr>
<tr>
<th>
large light
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-horiz btn-arrow-large-right-light teal btn-large">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-large-horiz btn-arrow-large-left-light teal btn-large"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-vert btn-arrow-large-up-light teal btn-large">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-vert btn-arrow-large-down-light teal btn-large">Button<span></span></a>
</tr>
<tr>
<th>
large medium
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-horiz btn-arrow-large-right-medium dark-grey btn-large">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-large-horiz btn-arrow-large-left-medium dark-grey btn-large"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-vert btn-arrow-large-up-medium dark-grey btn-large">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-vert btn-arrow-large-down-medium dark-grey btn-large">Button<span></span></a>
</td>
</tr>
<tr>
<th>
large dark
</th>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-horiz btn-arrow-large-right-dark btn-large">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-left btn-arrow-large-horiz btn-arrow-large-left-dark btn-large"><span></span>Button</a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-vert btn-arrow-large-up-dark btn-large">Button<span></span></a>
</td>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-large-vert btn-arrow-large-down-dark btn-large">Button<span></span></a>
</td>
</tr>
</table>
<table>
<caption><span>Combo Buttons</span>
<tr>
<th>with actions</th>
<td>
<span class="btn-menu">
<a class="btn btn-menu-left btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-down-dark grey" href="#">Button<span></span></a>
<a class="btn btn-menu-right grey" href="#">Button</a>
</span>
</td>
</tr>
<tr>
<th>double</th>
<td>
<span class="btn-menu">
<a class="btn btn-menu-left grey" href="#">Button</a>
<a class="btn btn-menu-right grey" href="#">Button</a>
</span>
</td>
</tr>
<tr>
<th>triple</th>
<td>
<span class="btn-menu">
<a class="btn btn-menu-left btn-txt-secondary grey" href="#">Button</a>
<a class="btn btn-menu-middle btn-txt-secondary grey" href="#">Button</a>
<a class="btn btn-menu-right btn-txt-secondary grey" href="#">Button</a>
</span>
</td>
</tr>
<tr>
<th>combo function</th>
<td>
<span class="btn-menu">
<a href="#" class="btn btn-menu-left grey">Button</a>
<a href="#" class="btn btn-menu-right btn-menu-down btn-arrow btn-arrow-standard-vert btn-arrow-standard-down-dark btn-only-arrow grey"><span></span></a>
</span>
</td>
</tr>
</table>
<table>
<caption><span>Disabled</span>
<tr>
<td><a href="#" class="btn disabled">Button</a> </td>
<td><a href="#" class="btn disabled dark-grey">Button</a> </td>
<td><a href="#" class="btn disabled teal">Button</a> </td>
<td><a href="#" class="btn disabled yellow">Button</a> </td>
<td><a href="#" class="btn disabled green">Button</a> </td>
</tr>
</table>
</div></section><section class="container group demo-colors"><h2 id="colors">Colors <a href="#top" class="back-to-top">^ Back to Top</a></h2>
<div class="about">
<p>Purty!</p>
<p>Not seen: #4B4A3C - BG of logged in header</p>
</div>
<div class="info">
<table>
<tr>
<td>
<div class="color-swatch bg-dark"></div>
<code>bg-dark</code>
</td>
<td>
<div class="color-swatch bg-light"></div>
<code>bg-light</code>
</td>
<td>
<div class="color-swatch bg-white" style="border: 1px solid #ccc"></div>
<code>bg-white</code>
</td>
<td>
<div class="color-swatch bg-brand"></div>
<code>bg-brand</code>
</td>
<td>
<div class="color-swatch bg-teal"></div>
<code>bg-teal</code>
</td>
</tr>
<tr>
<td>
<div class="color-swatch grad-dark"></div>
<code>grad-dark</code>
</td>
<td>
<div class="color-swatch grad-brand"></div>
<code>grad-brand</code>
</td>
<td>
<div class="color-swatch grad-teal-dark"></div>
<code>grad-teal-dark</code>
</td>
<td>
<div class="color-swatch grad-teal"></div>
<code>grad-teal</code>
</td>
<td>
<div class="color-swatch grad-orange-dark"></div>
<code>grad-orange-dark</code>
</td>
</tr>
<tr>
<td>
<div class="color-swatch grad-orange"></div>
<code>grad-orange</code>
</td>
<td>
<div class="color-swatch grad-yellow"></div>
<code>grad-yellow</code>
</td>
<td>
<div class="color-swatch bg-brand-dark"></div>
<code>bg-brand-dark</code>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
</div></section><section class="container group demo-dropdowns"><h2 id="dropdowns">Dropdown Menus <a href="#top" class="back-to-top">^ Back to Top</a></h2>
<div class="about">
<p>There are "logged in" and "logged out" headers.</p>
</div>
<div class="info">
<h3>Logged Out Header</h3>
<div class="demo-header logged-out">
<ul class="main-nav group">
<li class="active">
<a href="#">Home</a>
</li>
<li class="has-submenu">
<a href="#">Take a Tour</a> <span class="dropdown-arrow"></span>
<ul>
<li><a href="">Create Surveys</a></li>
<li><a href="">Collect Responses</a></li>
<li><a href="">Analyze Results</a></li>
</ul>
</li>
<li class="has-submenu">
<a href="#">Resources</a> <span class="dropdown-arrow"></span>
<ul>
<li><a href="">Customer Feedback</a></li>
<li><a href="">Product Feedback</a></li>
<li><a href="">Market Research</a></li>
<li><a href="">Employee Satisfaction</a></li>
<li><a href="">Performance Review</a></li>
<li><a href="">Healthcare</a></li>
<li><a href="">Event</a></li>
<li><a href="">Education</a></li>
<li><a href="">Non-Profit</a></li>
<li><a href="">Automated Phone</a></li>
</ul>
</li>
<li>
<a href="#">Plans & Pricing</a>
</li>
</ul>
</div>
<h3>Logged In Header</h3>
<div class="demo-header logged-in">
<ul class="main-nav group">
<li class="active">
<a href="#">Home</a>
</li>
<li class="has-submenu">
<a href="#">Take a Tour</a> <span class="dropdown-arrow"></span>
<ul>
<li><a href="">Create Surveys</a></li>
<li><a href="">Collect Responses</a></li>
<li><a href="">Analyze Results</a></li>
</ul>
</li>
<li class="has-submenu">
<a href="#">Resources</a> <span class="dropdown-arrow"></span>
<ul>
<li><a href="">Customer Feedback</a></li>
<li><a href="">Product Feedback</a></li>
<li><a href="">Market Research</a></li>
<li><a href="">Employee Satisfaction</a></li>
<li><a href="">Performance Review</a></li>
<li><a href="">Healthcare</a></li>
<li><a href="">Event</a></li>
<li><a href="">Education</a></li>
<li><a href="">Non-Profit</a></li>
<li><a href="">Automated Phone</a></li>
</ul>
</li>
<li>
<a href="#">Plans & Pricing</a>
</li>
</ul>
</div>
<h3>Menu Buttons</h3>
<table>
<tr>
<td>
<span class="btn-menu">
<a class="btn btn-menu-left btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-down-dark grey" href="#" data-menu="menu-1">Button<span></span></a>
<a class="btn btn-menu-right grey" href="#">Button</a>
</span>
<!-- Semantically, this is weird. It's just a list in the middle of nowhere
no specifically connected to the above button -->
<ul class="button-menu" id="menu-1">
<li><a href="#">State A</a>
<div class="q">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite <a href="#">presentation</a> software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</li>
<li><a href="#">State B</a>
<div class="q">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite <a href="#">presentation</a> software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</li>
<li><a href="#">State C</a>
<div class="q">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite <a href="#">presentation</a> software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</li>
</ul>
</td>
<td>
Menu of buttons, one with a dropdown, one without
</td>
</tr>
<tr>
<td>
<span class="btn-menu">
<a href="#" class="btn btn-menu-left yellow">Button</a>
<a href="#" class="btn btn-menu-right btn-menu-down btn-arrow btn-arrow-standard-vert btn-arrow-standard-down-dark btn-only-arrow yellow" data-menu="menu-2"><span></span></a>
</span>
<ul class="button-menu" id="menu-2">
<li><a href="#">State A</a>
</li>
<li><a href="#">State B</a>
</li>
<li><a href="#">State C</a>
</li>
</ul>
</td>
<td>
Button-based dropdowns can take any arrow or color classes regular buttons can (requires buttons.css)
</td>
</tr>
<tr>
<td>
<a href="#" class="btn btn-arrow btn-arrow-right btn-arrow-small-vert btn-arrow-small-down-dark btn-small" data-menu="menu-3">Button<span></span></a>
<ul class="button-menu" id="menu-3">
<li><a href="#">State A</a>
</li>
<li><a href="#">State B</a>
<div class="q">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite <a href="#">presentation</a> software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</li>
<li><a href="#">State C</a>
<div class="q">
<span>?</span>
<div class="popout">
<h5>View Clips</h5>
<p>View Clips are saved versions of individual question summaries you wish to share or export for printing or importing into your favorite <a href="#">presentation</a> software like PowerPoint. You can save multiple versions of the same question (with different filters or chart types, for example).</p>
<a href="#" class="learn-more-link">Learn more »</a>
</div>
</div>
</li>
</ul>
</td>
<td>
Mini button (requires buttons.css) / Doesn't change size of dropdown
</td>
</tr>
<tr>
<td>
<span class="btn-menu">