volt-picnic 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 29ec441bdeb0e9bc55fddb8e35e0662d3d439512
4
+ data.tar.gz: 1050a6c38216ecf69921a0a91f8913e910512a43
5
+ SHA512:
6
+ metadata.gz: c859251b0ccb46abe21819be461effb7c1763410aae1be097837f0ef746d87f067047b2b12aa94fbf886cc6f4899434f1bbc3783b3cf4561f1f5b40f9c31d3c4
7
+ data.tar.gz: beb68aea718d4d2b5da04c73d906a02553f811b40940f2726fd1ae3f8b6ccd8e42eda39845335d677d463ca577cec3e3dad875e2fe266e6adbab427441709957
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in volt-picnic.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Volt::Picnic
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'volt-picnic'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install volt-picnic
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/[my-github-username]/volt-picnic/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,791 @@
1
+ /*
2
+ * Use http://cssminifier.com/ , it doesn't break the CSS
3
+ *
4
+ * 1. Normalize
5
+ * 2. Generic
6
+ * 3. Forms
7
+ * 3.1 Inputs
8
+ * 3.2 Selects
9
+ * 3.3 Checkboxes & Radiobuttons
10
+ * 4. Buttons
11
+ * 5. Tables
12
+ * 6. Grids
13
+ *
14
+ */
15
+
16
+ /*
17
+ Defaults:
18
+
19
+ margin: .3em;
20
+ padding: .3em;
21
+ border-radius: .2em;
22
+ darker color: rgba(255, 255, 255, .3);
23
+
24
+ */
25
+
26
+
27
+
28
+ /* NORMALIZE */
29
+ /* normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
30
+ /* END NORMALIZE */
31
+
32
+
33
+
34
+
35
+
36
+
37
+ /* GENERIC */
38
+ /* Delete the outline when links are active */
39
+ body {
40
+ color: #333;
41
+ font-size: 1.1em;
42
+ line-height: 1.5em;
43
+ }
44
+ :focus {
45
+ outline: none;
46
+ }
47
+
48
+
49
+
50
+ h1 {
51
+ line-height: 1.5em;
52
+ }
53
+
54
+ a, a:hover, a:active, a:visited {
55
+ color: #0074d9;
56
+ text-decoration: none;
57
+ }
58
+ li {
59
+ margin: 0 0 5px;
60
+ }
61
+ /* The <pre> doesn't have a nice style from Normalize.css */
62
+ pre {
63
+ text-align: left;
64
+ border: 1px solid rgba(0,0,0,.1);
65
+ background: rgba(0,0,0,.05);
66
+ padding: .3em;
67
+ }
68
+ code {
69
+ background: #EEE;
70
+ padding: 3px 5px;
71
+ font-size: .8em;
72
+ }
73
+ blockquote {
74
+ padding: 0 0 0 1em;
75
+ margin: 0 0 0 .1em;
76
+ box-shadow: inset 5px 0px rgba(0, 0, 0, 0.2);
77
+ }
78
+
79
+ /* Nice fontello trick from Ronen Ackerman ( http://stackoverflow.com/a/17561467 ) */
80
+ i[class^="icon-"]:before,i[class*=" icon-"]:before {
81
+ margin: 0;
82
+ }
83
+ /* END GENERIC*/
84
+
85
+
86
+
87
+
88
+
89
+
90
+ /* INPUT */
91
+ input {
92
+ line-height: 1.5em;
93
+ margin: .2em;
94
+ padding: .2em .5em;
95
+ border: 1px solid rgba(0,0,0,.3);
96
+ box-shadow: inset .1em .1em .2em -.1em rgba(0,0,0,.3);
97
+ border-radius: .2em;
98
+ }
99
+
100
+ input:focus {
101
+ border-color: #7fdbff;
102
+ box-shadow: 0 0 .2em -.1em rgba(0,0,0,.2);
103
+ transition: all 0.3s ease;
104
+ }
105
+
106
+ input:focus:valid {
107
+ border-color: #2ecc40;
108
+ box-shadow: 0 0 .2em -.1em #2ecc40;
109
+ transition: all 0.3s ease;
110
+ }
111
+
112
+ input:invalid {
113
+ border-color: #ff4136;
114
+ box-shadow: 0 0 .2em -.1em #ff4136;
115
+ transition: all 0.3s ease;
116
+ }
117
+
118
+ input:focus:invalid {
119
+ border-color: #ff851b;
120
+ box-shadow: 0 0 .2em -.1em #ff851b;
121
+ transition: all 0.3s ease;
122
+ }
123
+ /* END INPUT */
124
+
125
+
126
+
127
+
128
+
129
+
130
+ /* SELECT */
131
+ .select {
132
+ display: inline-block;
133
+ position: relative;
134
+ border: 1px solid rgba(0,0,0,.3);
135
+ border-radius: .2em;
136
+ overflow: hidden;
137
+ }
138
+
139
+ .select:after {
140
+ padding: .2em 0 .2em 1.3em;
141
+ background: #FFF;
142
+ content: "▼";
143
+ display: block;
144
+ position: absolute;
145
+ right: 0;
146
+ top: 0;
147
+ width: 2.3em;
148
+ height: 100%;
149
+ pointer-events: none;
150
+ font-size: .8em;
151
+ line-height: 1.8em;
152
+ }
153
+
154
+ select {
155
+ padding: 0 2em 0 .3em;
156
+ background: none;
157
+ border: none;
158
+ min-width: 14em;
159
+ -webkit-padding-before: .23em;
160
+ -webkit-padding-after: .17em;
161
+
162
+ /* Add border to the dropdown and hide it from the closed one */
163
+ border: 1px solid #CCC;
164
+ margin: -2px;
165
+
166
+ cursor: pointer;
167
+ }
168
+
169
+ select:-moz-focusring {
170
+ color: transparent;
171
+ text-shadow: 0 0 0 #333;
172
+ }
173
+
174
+ select option {
175
+ padding: .2em .5em;
176
+ }
177
+ /* END SELECT */
178
+
179
+
180
+
181
+
182
+
183
+
184
+ /* CHECKBOX */
185
+
186
+
187
+
188
+
189
+
190
+
191
+ .checkbox {
192
+ position: relative;
193
+ display: inline-block;
194
+ min-width: 1em;
195
+ min-height: 1.25em;
196
+ line-height: 1em;
197
+ margin: .2em 0 -.2em;
198
+ outline: 0px none;
199
+ vertical-align: middle;
200
+ cursor: pointer;
201
+ }
202
+
203
+ /* Match the element following input */
204
+ .checkbox input + * {
205
+ vertical-align: super;
206
+ }
207
+
208
+ .checkbox input + *:before {
209
+ content: "";
210
+ position: absolute;
211
+ border-radius: .2em;
212
+ min-width: .8em;
213
+ height: .8em;
214
+ top: .1em;
215
+ line-height: .8em;
216
+ width: .8em;
217
+ height: .8em;
218
+ left: 0px;
219
+ content: "✔";
220
+ text-align: center;
221
+ background: #FFF;
222
+ color: transparent;
223
+ border: 1px solid rgba(0, 0, 0, 0.3);
224
+ box-sizing: border-box;
225
+ -webkit-box-sizing: border-box;
226
+ }
227
+
228
+ .checkbox input {
229
+ opacity: 0;
230
+ }
231
+
232
+ .checkbox input:checked + *:before {
233
+ color: #555;
234
+ }
235
+ /* END CHECKBOX */
236
+
237
+
238
+
239
+
240
+
241
+
242
+ /* RADIO */
243
+ .radio {
244
+ position: relative;
245
+ display: inline-block;
246
+ min-width: 1em;
247
+ min-height: 1.25em;
248
+ line-height: 1em;
249
+ margin: .2em 0 -.2em;
250
+ outline: 0px none;
251
+ vertical-align: middle;
252
+ cursor: pointer;
253
+ }
254
+
255
+ /* Match the element following input */
256
+ .radio input + * {
257
+ vertical-align: super;
258
+ }
259
+
260
+ /* Not to repeat them */
261
+ .radio input + *:before,
262
+ .radio input + *:after {
263
+ content: "";
264
+ position: absolute;
265
+ border-radius: 100em;
266
+ margin: .1em 0;
267
+ }
268
+
269
+ .radio input + *:before {
270
+ min-width: .8em;
271
+ height: .8em;
272
+ top: 0;
273
+ line-height: .8;
274
+ width: .8em;
275
+ height: .8em;
276
+ left: 0px;
277
+ background: #FFF;
278
+ border: 1px solid rgba(0, 0, 0, 0.3);
279
+ box-sizing: border-box;
280
+ -webkit-box-sizing: border-box;
281
+ }
282
+
283
+ .radio input + *:after {
284
+ border: none;
285
+ top: 0.2em;
286
+ left: 0.2em;
287
+ width: 0.4em;
288
+ height: 0.4em;
289
+ background: #555;
290
+ opacity: 0;
291
+ }
292
+
293
+ .radio input {
294
+ opacity: 0;
295
+ }
296
+
297
+ .radio input:checked + *:after {
298
+ opacity: 1;
299
+ }
300
+ /* END RADIO */
301
+
302
+
303
+
304
+
305
+
306
+
307
+ /* BUTTON */
308
+ /* Normal button */
309
+ button,
310
+ input[type='submit'],
311
+ a.button,
312
+ label.button span {
313
+ border: none;
314
+ box-sizing: content-box;
315
+ -webkit-box-sizing: content-box;
316
+ -moz-box-sizing: content-box;
317
+ display: inline-block;
318
+ font-size: 1em;
319
+ height: 1.2em;
320
+ line-height: 1.2em;
321
+ text-decoration: none;
322
+ color: inherit;
323
+ vertical-align: middle;
324
+ padding: .3em 1em .5em;
325
+ background: #AAA;
326
+ color: #FFF;
327
+ margin: 0 0 .2em;
328
+ box-shadow: inset 0 -.2em rgba(0,0,0,.3);
329
+ border-radius: .2em;
330
+ cursor: pointer;
331
+ -webkit-touch-callout: none;
332
+ -webkit-user-select: none;
333
+ -moz-user-select: none;
334
+ -ms-user-select: none;
335
+ user-select: none;
336
+ transition: all .1s ease 0.1s;
337
+ }
338
+
339
+ .button input {
340
+ display: none;
341
+ }
342
+
343
+ /* Hover the button */
344
+ button:hover,
345
+ input[type='submit']:hover,
346
+ a.button:hover,
347
+ label.button:hover span {
348
+ margin: .1em 0 .2em;
349
+ padding: .3em 1em .4em;
350
+ transition: all .1s ease;
351
+ box-shadow: inset 0 -.1em rgba(0,0,0,.3);
352
+ }
353
+
354
+ /* Press the button */
355
+ button:active,
356
+ input[type='submit']:active,
357
+ a.button:active,
358
+ label.button span:active,
359
+ label.button input:checked + span {
360
+ margin: .2em 0 .2em;
361
+ padding: .3em 1em .3em;
362
+ box-shadow: inset 0 .1em .1em rgba(0,0,0,0.3);
363
+ }
364
+
365
+ /* Different type of buttons */
366
+ button.primary,
367
+ input[type='submit'].primary,
368
+ a.button.primary,
369
+ label.button.primary span {
370
+ background: #0074d9;
371
+ }
372
+
373
+ button.success,
374
+ input[type='submit'].success,
375
+ a.button.success,
376
+ label.button.success span {
377
+ background: #2ecc40;
378
+ }
379
+
380
+ button.warning,
381
+ input[type='submit'].warning,
382
+ a.button.warning,
383
+ label.button.warning span {
384
+ background: #ff851b;
385
+ }
386
+
387
+ button.error,
388
+ input[type='submit'].error,
389
+ a.button.error,
390
+ label.button.error span {
391
+ background: #ff4136;
392
+ }
393
+ /* END BUTTON */
394
+
395
+
396
+
397
+
398
+
399
+
400
+ /* TABLE */
401
+ table {
402
+ text-align: left;
403
+ }
404
+
405
+ td,th {
406
+ padding: .4em 2.4em .4em .6em;
407
+ }
408
+
409
+ th {
410
+ font-weight: 900;
411
+ color: #fff;
412
+ background: #BBB;
413
+ }
414
+
415
+ .primary th {
416
+ background-color: #0074D9;
417
+ }
418
+
419
+ .success th {
420
+ background-color: #2ECC40;
421
+ }
422
+
423
+ .warning th {
424
+ background-color: #FF851B;
425
+ }
426
+
427
+ .error th {
428
+ background-color: #FF4136;
429
+ }
430
+
431
+
432
+ tr:nth-child(even) {
433
+ background: rgba(0,0,0,.05);
434
+ }
435
+ /* END TABLE */
436
+
437
+
438
+
439
+
440
+
441
+
442
+ /* GRIDS */
443
+ .row {
444
+ position: relative;
445
+ display: block;
446
+ overflow: auto;
447
+ }
448
+
449
+ [class*="full"],[class*="half"],[class*="third"],[class*="fourth"],[class*="fifth"],[class*="sixth"] {
450
+ box-sizing: border-box;
451
+ float: left;
452
+ padding-left: 0;
453
+ padding-right: 0;
454
+ min-height: 1px;
455
+ }
456
+
457
+ .none {
458
+ display: none;
459
+ }
460
+
461
+ .full {
462
+ width: 100%;
463
+ }
464
+
465
+ .half {
466
+ width: 50%;
467
+ }
468
+
469
+ .third {
470
+ width: 33.333%;
471
+ }
472
+
473
+ .two-third {
474
+ width: 66.666%;
475
+ }
476
+
477
+ .fourth {
478
+ width: 25%;
479
+ }
480
+
481
+ .three-fourth {
482
+ width: 75%;
483
+ }
484
+
485
+ .fifth {
486
+ width: 20%;
487
+ }
488
+
489
+ .two-fifth {
490
+ width: 40%;
491
+ }
492
+
493
+ .three-fifth {
494
+ width: 60%;
495
+ }
496
+
497
+ .four-fifth {
498
+ width: 80%;
499
+ }
500
+
501
+ .sixth {
502
+ width: 16.666%;
503
+ }
504
+
505
+ /* Responsive grids: tablet+ */
506
+ @media all and (min-width: 750px) {
507
+ .m-none {
508
+ display: none;
509
+ }
510
+
511
+ .m-full {
512
+ width: 100%;
513
+ }
514
+
515
+ .m-half {
516
+ width: 50%;
517
+ }
518
+
519
+ .m-third {
520
+ width: 33.333%;
521
+ }
522
+
523
+ .m-two-third {
524
+ width: 66.666%;
525
+ }
526
+
527
+ .m-fourth {
528
+ width: 25%;
529
+ }
530
+
531
+ .m-three-fourth {
532
+ width: 75%;
533
+ }
534
+
535
+ .m-fifth {
536
+ width: 20%;
537
+ }
538
+
539
+ .m-two-fifth {
540
+ width: 40%;
541
+ }
542
+
543
+ .m-three-fifth {
544
+ width: 60%;
545
+ }
546
+
547
+ .m-four-fifth {
548
+ width: 80%;
549
+ }
550
+
551
+ .m-sixth {
552
+ width: 16.666%;
553
+ }
554
+ }
555
+
556
+ /* Responsive grids: laptop+ */
557
+ @media all and (min-width: 1200px) {
558
+ .l-none {
559
+ display: none;
560
+ }
561
+
562
+ .l-full {
563
+ width: 100%;
564
+ }
565
+
566
+ .l-half {
567
+ width: 50%;
568
+ }
569
+
570
+ .l-third {
571
+ width: 33.333%;
572
+ }
573
+
574
+ .l-two-third {
575
+ width: 66.666%;
576
+ }
577
+
578
+ .l-fourth {
579
+ width: 25%;
580
+ }
581
+
582
+ .l-three-fourth {
583
+ width: 75%;
584
+ }
585
+
586
+ .l-fifth {
587
+ width: 20%;
588
+ }
589
+
590
+ .l-two-fifth {
591
+ width: 40%;
592
+ }
593
+
594
+ .l-three-fifth {
595
+ width: 60%;
596
+ }
597
+
598
+ .l-four-fifth {
599
+ width: 80%;
600
+ }
601
+
602
+ .l-sixth {
603
+ width: 16.666%;
604
+ }
605
+ }
606
+ /* END GRID */
607
+
608
+
609
+
610
+
611
+
612
+
613
+ /* NAV */
614
+ nav {
615
+ width: 100%;
616
+ position: fixed;
617
+ text-align: center;
618
+ top: 0;
619
+ background: #FFF;
620
+ box-shadow: 0 0 .6em rgba(0,0,0,.3);
621
+ z-index: 10;
622
+ transition: all .3s ease;
623
+ }
624
+
625
+ nav.transparent {
626
+ box-shadow: none;
627
+ background: none;
628
+ }
629
+
630
+ nav.transparent a,
631
+ nav.transparent a:visited {
632
+ color: #FFF;
633
+ }
634
+
635
+ nav a,
636
+ nav a:visited {
637
+ color: #333;
638
+ display: inline-block;
639
+ font-size: 1em;
640
+ height: 2em;
641
+ line-height: 2em;
642
+ padding: .5em .6em;
643
+ }
644
+
645
+ nav a:hover {
646
+ color: #333;
647
+ box-shadow: inset 0 -.2em 0 #7fdbff;
648
+ }
649
+
650
+ nav a.button,
651
+ nav a.button:hover {
652
+ color: #FFF;
653
+ line-height: 1.4em;
654
+ }
655
+
656
+ nav .main,
657
+ nav .menu {
658
+ margin: 0 .5em;
659
+ }
660
+
661
+ nav .main {
662
+ font-weight: 700;
663
+ float: left;
664
+ max-width: 50%;
665
+ white-space: nowrap;
666
+ }
667
+
668
+
669
+ nav .main img {
670
+ height: 2em;
671
+ }
672
+
673
+ nav .menu {
674
+ float: right;
675
+ }
676
+
677
+ .burgercheck,.burgermenu {
678
+ display: none;
679
+ cursor: pointer;
680
+ }
681
+
682
+ .burgermenu {
683
+ display: inline-block;
684
+ position: relative;
685
+ height: .8em;
686
+ width: .4em;
687
+ margin: .35em;
688
+ display: none;
689
+ }
690
+
691
+ .burgermenu:before,.burgermenu:after {
692
+ display: none;
693
+ content: " ";
694
+ width: 100%;
695
+ position: absolute;
696
+ top: 0;
697
+ bottom: 0;
698
+ border-style: solid;
699
+ border-color: #333;
700
+ border-width: .14em 0;
701
+ }
702
+
703
+ .burgermenu:after {
704
+ top: 50%;
705
+ margin-top: -.07em;
706
+ }
707
+
708
+ @media all and (max-width: 960px) {
709
+ [class*="icon-"]:before,[class*=" icon-"]:before {
710
+ display: none;
711
+ }
712
+ }
713
+
714
+ @media all and (max-width: 750px) {
715
+ [class*="icon-"]:before {
716
+ display: inline-block;
717
+ }
718
+
719
+ .burgercheck ~ label:before,.burgercheck ~ label:after {
720
+ display: block;
721
+ }
722
+
723
+ .burgercheck ~ label {
724
+ position: fixed;
725
+ top: 0;
726
+ right: 0;
727
+ display: inline-block;
728
+ font-size: 2em;
729
+ line-height: 1.5em;
730
+ padding-right: .5em;
731
+ text-align: right;
732
+ transition: all .3s ease;
733
+ /* Avoid the burguer menu to display while hiding */
734
+ transition: display 0s ease .3s;
735
+ }
736
+
737
+ .burgercheck:checked ~ label:before,.burgercheck:checked ~ label:after {
738
+ display: none;
739
+ }
740
+
741
+ .burgercheck:checked ~ label {
742
+ margin: 0;
743
+ right: 70%;
744
+ width: 30%;
745
+ height: 100%;
746
+ transition: all .3s ease;
747
+ background: rgba(255,255,255,.7);
748
+ }
749
+
750
+ nav .menu {
751
+ position: fixed;
752
+ width: 70%;
753
+ height: 100%;
754
+ right: -70%;
755
+ top: 0;
756
+ margin-right: 0;
757
+ background: #FFF;
758
+ box-shadow: 0 0 .6em rgba(0,0,0,.3);
759
+ overflow: auto;
760
+ transition: all .3s ease;
761
+ }
762
+
763
+ .burgercheck:checked ~ .menu {
764
+ right: 0;
765
+ transition: all .3s ease;
766
+ }
767
+
768
+ nav .menu a {
769
+ display: block;
770
+ text-align: left;
771
+ }
772
+
773
+ nav .menu .button {
774
+ margin: .5em;
775
+ float: left;
776
+ clear: left;
777
+ }
778
+
779
+ nav .menu .button:hover {
780
+ margin: .6em .5em .5em;
781
+ }
782
+
783
+ nav .menu .button:active {
784
+ margin: .7em .5em .5em;
785
+ }
786
+
787
+ .transparent .menu {
788
+ color: #333;
789
+ }
790
+ }
791
+ /* END NAV */