-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1223 lines (922 loc) Β· 52.7 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 lang="pt-br">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon.png">
<title>MenuChef - Create hamburgers' menu like a chef</title>
<meta name="description" content="Create hamburgers' menu like a chef">
<meta property="og:url" content="https://theus.github.io/MenuChef/">
<meta property="og:type" content="website">
<meta property="og:title" content="MenuChef">
<meta property="og:image" content="https://theus.github.io/MenuChef/assets/img/menuchef-logo.png">
<meta property="og:description" content="π Create hamburgers' menu like a chef">
<meta property="og:locale" content="en_US">
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@hostx">
<meta name="twitter:url" content="https://theus.github.io/MenuChef/">
<meta name="twitter:title" content="MenuChef">
<meta name="twitter:description" content="π Create hamburgers' menu like a chef">
<meta name="twitter:image" content="https://theus.github.io/MenuChef/assets/img/menuchef-logo.png">
<meta itemprop="name" content="MenuChef">
<meta itemprop="description" content="π Create hamburgers' menu like a chef">
<meta itemprop="image" content="https://theus.github.io/MenuChef/assets/img/menuchef-logo.png">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/themes/prism.min.css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">
.MenuChefOpen:not(.is-active) {
display: none;
}
</style>
</head>
<body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-22696837-6', 'auto');
ga('send', 'pageview');
</script>
<main>
<div class="ribbonFit">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="73px" height="123px">
<path fill-rule="evenodd" fill="rgb(229, 199, 94)"
d="M68.154,122.708 L64.283,122.708 L44.675,103.034 C40.153,98.498 32.824,98.498 28.302,103.034 L8.693,122.708 L4.846,122.708 C2.462,122.708 0.529,120.769 0.529,118.377 L0.529,-0.000 L72.471,-0.000 L72.471,118.377 C72.471,120.769 70.538,122.708 68.154,122.708 Z"/>
<path fill-rule="evenodd" fill="rgb(255, 255, 255)"
d="M55.187,33.215 C51.962,33.631 50.220,33.878 49.962,33.956 C49.469,34.398 48.563,35.716 47.242,37.912 C45.921,40.108 45.261,41.712 45.261,42.726 C45.261,43.687 45.921,44.168 47.242,44.168 C47.864,44.168 48.680,43.973 49.690,43.583 C50.700,43.193 51.477,42.830 52.021,42.492 C53.471,41.582 55.025,40.244 56.682,38.477 C57.045,38.113 57.291,37.931 57.420,37.931 C57.498,37.931 57.537,38.009 57.537,38.165 C57.537,38.321 57.343,38.633 56.954,39.101 C55.607,40.764 54.092,42.102 52.409,43.115 C50.389,44.363 48.459,44.986 46.621,44.986 C45.817,44.986 45.164,44.811 44.659,44.460 C44.154,44.109 43.901,43.402 43.901,42.336 C43.901,41.474 44.222,40.339 44.832,38.959 C44.683,39.164 44.465,39.419 44.173,39.724 C43.577,40.348 43.105,40.842 42.755,41.205 C42.406,41.570 42.166,41.810 42.036,41.927 C41.907,42.043 41.667,42.265 41.318,42.589 C40.968,42.914 40.702,43.142 40.521,43.271 C40.340,43.402 40.081,43.596 39.744,43.856 C39.408,44.116 39.109,44.304 38.851,44.421 C38.592,44.538 38.294,44.674 37.957,44.830 C37.413,45.064 36.766,45.181 36.015,45.181 C34.694,45.181 34.034,44.324 34.034,42.609 C34.034,41.205 34.797,39.263 36.326,36.781 C37.854,34.300 39.084,33.046 40.016,33.020 C40.275,33.020 40.566,33.124 40.890,33.332 C41.214,33.540 41.376,33.748 41.376,33.956 C41.246,34.138 41.091,34.339 40.910,34.560 C40.728,34.781 40.534,35.021 40.327,35.281 C40.120,35.541 39.835,35.911 39.472,36.392 C39.109,36.873 38.760,37.334 38.424,37.775 C36.481,40.296 35.510,42.031 35.510,42.979 C35.510,43.928 35.833,44.402 36.481,44.402 C37.025,44.402 37.763,44.103 38.696,43.505 C40.871,42.154 42.593,40.673 43.862,39.062 C44.329,38.464 44.645,38.165 44.814,38.165 C44.977,38.165 45.057,38.267 45.063,38.462 C45.144,38.289 45.209,38.131 45.300,37.951 C46.232,36.093 46.944,34.710 47.436,33.800 C47.073,33.878 46.763,33.917 46.504,33.917 C45.753,33.917 45.377,33.618 45.377,33.020 C45.377,32.579 45.688,32.267 46.310,32.085 C46.387,32.085 46.504,32.072 46.659,32.046 L48.913,32.046 C49.379,31.448 49.909,30.759 50.505,29.980 C51.230,29.044 51.722,28.577 51.982,28.577 C52.240,28.577 52.564,28.681 52.953,28.888 C53.341,29.097 53.536,29.343 53.536,29.629 C53.536,29.915 52.914,30.759 51.671,32.163 C52.344,32.189 53.225,32.202 54.313,32.202 L59.907,32.124 C59.984,32.176 60.023,32.215 60.023,32.241 C60.023,32.474 58.411,32.800 55.187,33.215 ZM43.124,31.344 C42.736,31.344 42.379,31.202 42.056,30.915 C41.732,30.630 41.570,30.305 41.570,29.941 C41.570,29.214 42.062,28.849 43.047,28.849 C43.435,28.849 43.804,28.973 44.154,29.220 C44.503,29.467 44.678,29.759 44.678,30.097 C44.678,30.435 44.516,30.727 44.193,30.974 C43.868,31.221 43.513,31.344 43.124,31.344 ZM39.589,26.901 C39.460,26.901 39.330,26.797 39.201,26.589 C38.968,26.173 38.579,25.965 38.036,25.965 C36.844,25.965 35.730,26.823 34.695,28.538 C34.487,28.876 33.840,30.097 32.752,32.202 L33.218,32.202 C36.041,32.202 37.919,32.163 38.851,32.085 C38.955,32.111 39.007,32.163 39.007,32.241 C39.007,32.449 38.087,32.734 36.248,33.098 C34.513,33.384 33.088,33.631 31.975,33.839 C31.172,35.502 30.201,37.477 29.061,39.763 C26.731,44.129 25.189,46.844 24.439,47.910 C22.185,51.131 19.984,52.743 17.834,52.743 C17.083,52.743 16.430,52.424 15.872,51.788 C15.316,51.151 15.024,50.443 14.998,49.664 C15.076,49.352 15.193,49.196 15.348,49.196 C15.426,49.196 15.478,49.287 15.503,49.469 C15.659,50.144 15.918,50.664 16.280,51.028 C16.643,51.391 17.018,51.574 17.407,51.574 C19.609,51.574 21.616,50.209 23.428,47.481 C24.464,45.922 25.876,43.115 27.663,39.062 L29.761,33.995 C27.171,33.969 25.876,33.657 25.876,33.059 C25.876,32.800 25.999,32.579 26.245,32.396 C26.491,32.215 26.704,32.124 26.886,32.124 L30.538,32.202 C33.076,26.537 35.407,23.704 37.530,23.704 C38.333,23.704 39.149,24.094 39.978,24.874 C40.185,25.082 40.289,25.355 40.289,25.692 C40.289,26.498 40.056,26.901 39.589,26.901 Z"/>
<text font-family="Open Sans" fill="rgb(169, 147, 69)" transform="matrix( 0.34783649583802, 0, 0, 0.34899454686855,16.6553463066289, 64.7785190859601)" font-weight="bold" font-size="37.229px"> <tspan dy="0.4em" x="0.15em">13 kb</tspan><tspan x="-0.4em" dy="0.986em">calories</tspan>
</text>
</svg>
</div>
<header class="Header" id="home">
<div class="container">
<div class="Header-wrapper">
<div class="rellax" data-rellax-speed="1"><div class="Header-icon Header-icon--3"></div></div>
<div class="rellax" data-rellax-speed="2"><div class="Header-icon Header-icon--1"></div></div>
<div class="rellax" data-rellax-speed="4"><div class="Header-icon Header-icon--2"></div></div>
<div class="Header-logo">
<img src="assets/img/menuchef-logo.png" title="MenuChef" alt="MenuChef">
<div class="Header-logo-slogan">
Create hamburgers' menu like a chef
<br>
<span>v1.3.0</span>
</div>
<div class="Header-logo-btns">
<a class="github-button" href="https://github.com/theus/MenuChef" data-icon="octicon-star" data-show-count="true" aria-label="Star theus/instantgargom on GitHub" data-size="large">Star</a>
<a class="github-button" href="https://github.com/theus/MenuChef/archive/gh-pages.zip" data-icon="octicon-cloud-download" aria-label="Download theus/MenuChef on GitHub" data-size="large">Download</a>
</div>
</div><!-- /.Header-logo -->
<div class="Header-bottom">
<div class="rellax" data-rellax-speed="1"><div class="Header-icon Header-icon--4"></div></div>
<div class="rellax" data-rellax-speed="2"><div class="Header-icon Header-icon--5"></div></div>
<div>
<div class="rellax" data-rellax-speed="3"><div class="Header-icon Header-icon--6"></div></div>
</div>
</div><!-- /.Header-bottom -->
</div><!-- /.Header-wrapper -->
</div><!-- /.container -->
</header><!-- /.Header -->
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="i-flavors">
<path fill-rule="evenodd" d="M157.904 49.207h-9.988c-.496-12.328-10.517-22.234-22.873-22.524-5.905-12.426-18.318-20.347-32.194-20.347-3.62 0-7.18.556-10.57 1.61C78.99 3.388 73.9.49 68.2.056c-1.28-.098-2.566-.068-3.82.088-7.965.983-14.3 6.703-16.22 14.302-2.085.033-4.17.238-6.2.63-16.433 3.162-28.437 17.432-28.882 34.13H3.095C1.385 49.206 0 50.596 0 52.31c0 3.752 8.125 14.116 12.06 18.547C18.195 77.765 27.2 86 35.252 86h90.496c8.054 0 17.057-8.235 23.192-15.145C152.875 66.425 161 56.06 161 52.308c0-1.712-1.386-3.1-3.096-3.1zm-16.183 0h-6.03c-.487-5.762-5.32-10.3-11.194-10.3s-10.71 4.54-11.195 10.3h-2.537l.003-.09c0-2.55-.524-4.978-1.464-7.186 2.287-4.21 9.06-9.05 15.19-9.05 9.2 0 16.738 7.244 17.235 16.335zm-12.28 0h-9.9c.45-2.33 2.5-4.098 4.956-4.098 2.456 0 4.505 1.76 4.953 4.09zM92.85 12.54c10.747 0 20.43 5.75 25.623 14.926-1.973.53-3.864 1.313-5.626 2.324-4.252-6.963-11.757-11.217-19.998-11.217-6.81 0-13.1 2.87-17.5 7.84-1.33-1.504-2.8-2.89-4.37-4.152.732-.81 1.51-1.58 2.324-2.3 5.39-4.78 12.33-7.413 19.537-7.413zm-.426 18.208c-1.227 0-2.45.122-3.636.363-2.955.6-5.628 1.9-7.86 3.71-.535-1.12-1.13-2.21-1.777-3.26 3.26-4.27 8.25-6.777 13.7-6.777 6.28 0 11.98 3.365 15.04 8.817-.84.842-1.63 1.745-2.34 2.716-3.33-3.426-7.98-5.56-13.12-5.56zm12.143 18.368l-.002.092h-24.28c-.002-.03-.004-.06-.004-.092 0-5.773 4.1-10.788 9.74-11.925.785-.15 1.596-.24 2.41-.24 6.698 0 12.145 5.46 12.145 12.17zM65.142 6.3c.85-.106 1.722-.127 2.593-.06 3.344.254 6.384 1.763 8.584 4.17-2.54 1.332-4.94 2.968-7.12 4.902-1.21 1.075-2.356 2.245-3.41 3.475-3.53-1.937-7.34-3.247-11.31-3.89 1.6-4.597 5.65-7.98 10.66-8.597zm-22.01 14.867c1.828-.353 3.71-.53 5.594-.53 12.544 0 23.518 7.774 27.726 19.484-1.508 2.68-2.362 5.76-2.362 9l.002.09h-1.937c-.505-12.51-10.817-22.54-23.43-22.54-12.61 0-22.923 10.03-23.427 22.54h-6.026c.442-13.73 10.335-25.44 23.86-28.04zm5.594 17.74c-5.874 0-10.708 4.54-11.195 10.3H31.5c.497-9.09 8.036-16.335 17.233-16.335 9.197 0 16.736 7.244 17.234 16.335h-6.04c-.485-5.76-5.32-10.3-11.193-10.3zm4.954 10.3h-9.908c.45-2.33 2.498-4.098 4.954-4.098 2.456 0 4.505 1.76 4.954 4.09zm89.983 18.25c-7.113 7.843-13.643 12.34-17.915 12.34H35.252c-4.272 0-10.802-4.497-17.915-12.34-4.147-4.57-7.377-9.037-9.284-12.047h144.894c-1.907 3.01-5.136 7.475-9.284 12.048z"/>
</symbol>
<symbol id="i-table">
<path fill-rule="evenodd" d="M40.458,72.288 C37.591,72.288 35.267,70.067 35.267,67.324 C35.267,64.577 37.591,62.350 40.458,62.350 C43.326,62.350 45.650,64.577 45.650,67.324 C45.650,70.066 43.326,72.288 40.458,72.288 ZM43.097,48.259 C43.097,45.516 45.421,43.292 48.289,43.292 C51.156,43.292 53.478,45.516 53.478,48.259 C53.478,50.999 51.156,53.223 48.289,53.223 C45.421,53.223 43.097,50.999 43.097,48.259 ZM75.144,84.266 C74.652,84.266 74.167,84.196 73.680,84.034 L53.464,76.963 C51.010,76.173 49.665,73.561 50.472,71.153 C51.274,68.726 53.924,67.406 56.379,68.215 L76.598,75.281 C79.052,76.071 80.392,78.679 79.585,81.101 C78.938,83.034 77.107,84.266 75.144,84.266 ZM50.438,29.789 C50.439,27.046 52.763,24.819 55.630,24.819 C58.495,24.819 60.820,27.046 60.820,29.789 C60.820,32.533 58.495,34.757 55.630,34.757 C52.763,34.757 50.438,32.533 50.438,29.789 ZM66.276,33.420 C66.955,30.966 69.561,29.523 72.024,30.194 L92.304,36.359 C94.795,37.028 96.273,39.566 95.588,42.023 C95.013,44.068 93.134,45.416 91.082,45.416 C90.667,45.416 90.246,45.358 89.841,45.249 L69.560,39.087 C67.059,38.415 65.595,35.877 66.276,33.420 ZM82.740,65.050 C82.255,65.047 81.774,64.975 81.284,64.815 L61.110,57.715 C58.660,56.907 57.341,54.301 58.153,51.882 C58.976,49.473 61.616,48.174 64.081,48.977 L84.246,56.073 C86.706,56.880 88.023,59.489 87.208,61.902 C86.551,63.838 84.708,65.060 82.740,65.050 ZM121.771,22.402 C121.657,22.752 110.142,55.844 98.795,85.377 C90.941,105.812 84.673,118.567 66.837,118.980 C60.225,119.274 54.141,116.420 54.132,116.415 L15.158,98.988 C15.158,98.988 -3.265,93.308 0.517,69.694 L53.750,90.871 C53.750,90.871 53.450,111.799 70.118,109.498 C70.118,109.512 70.127,109.521 70.137,109.530 C78.292,108.173 82.583,101.526 90.040,82.114 C98.593,59.866 107.515,35.972 111.265,24.524 L51.227,9.435 L26.267,72.093 L17.474,68.938 L43.812,3.040 C44.600,0.897 46.847,-0.342 49.124,0.093 L118.222,16.499 C119.524,16.756 120.652,17.547 121.337,18.674 C122.016,19.799 122.177,21.149 121.771,22.402 Z"/>
</symbol>
<symbol id="i-oven">
<path fill-rule="evenodd" d="M102.76 68.092l-1.615 1.078 7.295 10.138-9.86 6.59-6.583-9.84-35.393 23.66c-8.103 5.417-18.285 7.39-27.936 5.412-9.388-1.923-17.315-7.266-22.407-15.058C-4.265 73.872.258 51.94 16.348 41.184l7.067-4.724c-6.22-2.295-10.378-8.293-9.953-14.836.278-4.267 2.383-8.207 5.77-10.81 3.4-2.612 7.742-3.637 11.934-2.81.147.032 14.64 3.023 22.31 4.772 2.548.58 5.26.075 7.44-1.384l3.083-2.06L77.14.545l39.504 59.038-13.883 8.51zm-3.655 12.29l2.907-1.95-3.884-5.832-2.908 1.952 3.885 5.83zm-6.4-15.637l-.302 1.514 1.81-1.217-1.508-.298zM64.027 27.447l-5.457-1.08.857-4.3 5.457 1.078.842-4.227-1.04-1.563-2.728 1.83c-2.726 1.83-6.12 2.465-9.306 1.736-6.756-1.546-19.545-4.2-19.66-4.224-2.705-.536-5.524.133-7.732 1.838-2.232 1.72-3.562 4.224-3.745 7.05-.31 4.79 5.022 6.256 9.972 7.24.355.07.664.235.947.433l8 2c.436.11.795.378 1.028.728.264.397.367.9.243 1.4.712 1.055.776 4.864-3.953 4.167l-6.75-1.69c-.133.148-.273.29-.443.405l-8.036 5.395C9.868 54.16 6.31 71.49 14.594 84.29c3.918 6.122 10.215 10.345 17.6 11.864 7.632 1.57 15.676.007 22.073-4.288l31.316-21.028 2.11-1.416-.38-.075 1.088-5.455-5.456-1.08.857-4.3 5.458 1.078.82-4.115-5.42-8.135-4.14-.818-1.087 5.454-4.303-.85 1.087-5.457-5.457-1.08.857-4.302 5.457 1.08.832-4.172-5.374-8.067-4.197-.83-1.086 5.454-4.304-.85 1.087-5.457zm9.38-15.95l-5.815 3.905 2 3.004.682.134-.136.684 3.805 5.712.7.14-.14.702 7.22 10.84.738.145-.146.74 3.76 5.645.757.15-.15.76 7.175 10.77.793.157-.16.796 3.717 5.58.813.16-.07.345 5.535-3.716-31.075-46.653z"/>
</symbol>
<symbol id="i-browser">
<path fill-rule="evenodd" d="M174.763 141H3.237C1.45 141 0 139.552 0 137.766V3.234C0 1.447 1.45 0 3.237 0h171.526C176.55 0 178 1.447 178 3.234v134.532c0 1.786-1.45 3.234-3.237 3.234zM171.526 6.468H6.473v13.8h165.053V6.47zm0 20.27H6.473V134.53h165.053V26.737zM14.336 9.03c.953 0 1.886.387 2.563 1.06.67.676 1.055 1.61 1.055 2.568 0 .952-.387 1.886-1.06 2.563-.676.68-1.61 1.067-2.562 1.067-.957 0-1.89-.386-2.568-1.063-.672-.676-1.064-1.61-1.064-2.562 0-.957.393-1.89 1.065-2.567.677-.673 1.61-1.06 2.568-1.06zm12.393 0c.954 0 1.89.387 2.564 1.06.672.676 1.06 1.61 1.06 2.568 0 .952-.388 1.886-1.06 2.563-.677.68-1.61 1.067-2.568 1.067-.953 0-1.886-.386-2.563-1.063-.677-.676-1.064-1.61-1.064-2.562 0-.952.387-1.89 1.064-2.567.677-.673 1.61-1.06 2.562-1.06zm12.395 0c.957 0 1.89.387 2.568 1.06.672.676 1.06 1.61 1.06 2.568 0 .952-.388 1.886-1.06 2.563-.677.68-1.61 1.067-2.568 1.067-.953 0-1.886-.386-2.563-1.063-.677-.676-1.064-1.61-1.064-2.562 0-.957.387-1.89 1.064-2.567.677-.673 1.61-1.06 2.563-1.06z"/>
</symbol>
<symbol id="i-browser-menu-side">
<path fill-rule="evenodd" opacity="0.859" fill="rgb(242, 218, 126)" d="M0.300,0.883 L77.313,0.883 L77.313,108.871 L0.300,108.871 L0.300,0.883 Z"/>
</symbol>
<symbol id="i-browser-menu-center">
<path fill-rule="evenodd" opacity="0.859" fill="rgb(242, 218, 126)" d="M-0.010,0.008 L166.000,0.008 L166.000,107.996 L-0.010,107.996 L-0.010,0.008 Z"/>
</path>
</symbol>
</svg>
<nav class="js-Menu oldmenu" style="display: none; ">
<a href="#home">Home</a>
<a href="#flavors">Our Flavors</a>
<a href="#nutritionaltable">Nutritional Table</a>
</nav>
<section class="Flavors" id="flavors">
<div class="container">
<div class="titleContainer">
<svg class="icon icon--title icon--flavors">
<use xlink:href="#i-flavors" />
</svg>
<h2 class="titleAccent">Our</h2>
<h1 class="title">Flavors</h1>
</div><!-- /.titleContainer -->
<div class="Flavors-items">
<div class="Flavors-item">
<h3 class="Flavors-item-type">Left</h3>
<div class="Flavors-item-icon">
<svg class="Flavors-item-browser">
<use xlink:href="#i-browser" />
</svg>
<svg class="Flavors-item-menu Flavors-item-menu--left">
<use xlink:href="#i-browser-menu-side" />
</use>
</div>
<h4 class="Flavors-item-recipe">Recipe</h4>
<div class="Flavors-item-code js-Flavors-item-code">
<pre v-html="menuchef.left.html"></pre>
</div>
<h3 class="Flavors-item-colors-title">Select seasoning</h3>
<ul class="Flavors-item-colors">
<li v-for="color in colors" class="Flavors-item-colors-color" :class="['Flavors-item-colors-color--'+color, {'is-active': colorActive == color }]">
<button @click="colorActive = color"></button>
</li>
</ul>
<h3 class="Flavors-item-colors-title">Method of preparation</h3>
<div class="Flavors-item-checkboxes">
<label class="Flavors-item-checkbox"><input class="uk-checkbox" type="checkbox" v-model="effectsOnOpen.smooth"> <span>Smooth</span></label>
<label class="Flavors-item-checkbox"><input class="uk-checkbox" type="checkbox" v-model="pageEffect.blur"> <span>Blur</span></label>
</div>
<div class="buttonContainer">
<button class="button" @click="openMenu('left')"><i class="fa fa-bars"></i> taste</button>
<button class="button js-copy" data-code="left"><i class="fa fa-clone"></i> copy</button>
</div>
</div>
<div class="Flavors-item">
<h3 class="Flavors-item-type">Center</h3>
<div class="Flavors-item-icon">
<svg class="Flavors-item-browser">
<use xlink:href="#i-browser" />
</svg>
<svg class="Flavors-item-menu Flavors-item-menu--center">
<use xlink:href="#i-browser-menu-center" />
</use>
</div>
<h4 class="Flavors-item-recipe">Recipe</h4>
<div class="Flavors-item-code js-Flavors-item-code">
<pre v-html="menuchef.center.html"></pre>
</div>
<h3 class="Flavors-item-colors-title">Select seasoning</h3>
<ul class="Flavors-item-colors">
<li v-for="color in colors" class="Flavors-item-colors-color" :class="['Flavors-item-colors-color--'+color, {'is-active': colorActive == color }]">
<button @click="colorActive = color"></button>
</li>
</ul>
<div class="buttonContainer">
<button class="button" @click="openMenu('center')"><i class="fa fa-bars"></i> taste</button>
<button class="button js-copy" data-code="center"><i class="fa fa-clone"></i> copy</button>
</div>
</div>
<div class="Flavors-item">
<h3 class="Flavors-item-type">Right</h3>
<div class="Flavors-item-icon">
<svg class="Flavors-item-browser">
<use xlink:href="#i-browser" />
</svg>
<svg class="Flavors-item-menu Flavors-item-menu--right">
<use xlink:href="#i-browser-menu-side" />
</use>
</div>
<h4 class="Flavors-item-recipe">Recipe</h4>
<div class="Flavors-item-code js-Flavors-item-code">
<pre v-html="menuchef.right.html"></pre>
</div>
<h3 class="Flavors-item-colors-title">Select seasoning</h3>
<ul class="Flavors-item-colors">
<li v-for="color in colors" class="Flavors-item-colors-color" :class="['Flavors-item-colors-color--'+color, {'is-active': colorActive == color }]">
<button @click="colorActive = color"></button>
</li>
</ul>
<h3 class="Flavors-item-colors-title">Method of preparation</h3>
<div class="Flavors-item-checkboxes">
<label class="Flavors-item-checkbox"><input class="uk-checkbox" type="checkbox" v-model="effectsOnOpen.smooth"> <span>Smooth</span></label>
<label class="Flavors-item-checkbox"><input class="uk-checkbox" type="checkbox" v-model="pageEffect.blur"> <span>Blur</span></label>
</div>
<div class="buttonContainer">
<button class="button" @click="openMenu('right')"><i class="fa fa-bars"></i> taste</button>
<button class="button js-copy" data-code="right"><i class="fa fa-clone"></i> copy</button>
</div>
</div>
</div><!-- /.Flavors-items -->
</div><!-- /.container -->
</section>
<section class="Preheating" id="preheating">
<div class="container">
<div class="titleContainer">
<svg class="icon icon--title icon--oven">
<use xlink:href="#i-oven" />
</svg>
<h2 class="titleAccent">Preheating</h2>
<h1 class="title">the oven</h1>
</div><!-- /.titleContainer -->
<div class="Preheating-text">
<p>
MenuChef helps you to create hamburgers' menu easily even without knowing how to cook. You just need call the MenuChef.js in your page and initiate like the examples above. It's light (approximately 55kb, <b>13kb gzipped</b>) and you don't need change the HTML code of the menu original. You can personalize it by CSS or by <a href="#nutritionaltable">options</a>.
</p>
<p>
You can download the latest version of MenuChef in <a href="https://github.com/theus/menuchef">Github</a> or can use the unpkg CDN
</p>
<pre><code class="language-html"><script src="//unpkg.com/[email protected]"></script></code></pre>
</div>
</div>
</section>
<section class="NutricionalTable" id="nutritionaltable">
<div class="container">
<div class="titleContainer">
<svg class="icon icon--title icon--table">
<use xlink:href="#i-table" />
</svg>
<h2 class="titleAccent">Nutritional</h2>
<h1 class="title">Table</h1>
</div><!-- /.titleContainer -->
<div class="NutricionalTable-table">
<h2 id="Constructor" class="NutricionalTable-table-title">Constructor</h2>
<table class="table table-hover">
<thead>
<tr>
<th class="NutricionalTable-table-var">Variable</th>
<th class="NutricionalTable-table-type">Type</th>
<th class="NutricionalTable-table-default">Default</th>
<th class="NutricionalTable-table-desc">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td id="constructor-ingredients">
<a href="#constructor-ingredients" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
ingredients
</td>
<td><span class="label label-default label--string">string</span></td>
<td>--</td>
<td>HTML selector for the anchor tags: eg: β.menu aβ or β.menu-linkβ if β.menu-linkβ itβs a NODE Collection of links</td>
</tr>
<tr>
<td id="constructor-options">
<a href="#constructor-options" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
options
</td>
<td><span class="label label-default label--object">object</span></td>
<td>options</td>
<td>Overwrite the <a href="#Default-Options">default options</a> of MenuChef</td>
</tr>
</tbody>
</table>
<h2 id="Options" class="NutricionalTable-table-title">Options</h2>
<table class="table table-hover">
<thead>
<tr>
<th class="NutricionalTable-table-var">Variable</th>
<th class="NutricionalTable-table-type">Type</th>
<th class="NutricionalTable-table-default">Default</th>
<th class="NutricionalTable-table-desc">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td id="options-parent">
<a href="#options-parent" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
<a href="https://github.com/theus/MenuChef/releases/tag/v1.2.0" target="_blank" style="text-decoration: none;">
<span class="label label-info" style="zoom: 0.8;" title="Released in MenuChef's 1.2.0 version">v1.2.0</span>
</a>
parent
</td>
<td><span class="label label-default label--string">string</span></td>
<td>body</td>
<td>Parent element where MenuChef'll placed</td>
</tr>
<tr>
<td id="options-theme">
<a href="#options-theme" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
theme
</td>
<td><span class="label label-default label--string">string</span> <span class="label label-default label--object">object</span></td>
<td>full</td>
<td>Theme string (name)/object to personalize specific details of MenuChef theme</td>
</tr>
<tr>
<td id="options-preventscroll">
<a href="#options-preventscroll" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
<a href="https://github.com/theus/MenuChef/releases/tag/v1.3.0" target="_blank" style="text-decoration: none;">
<span class="label label-info" style="zoom: 0.8;" title="Released in MenuChef's 1.3.0 version">v1.3.0</span>
</a>
preventScroll
</td>
<td><span class="label label-default label--boolean">boolean</span></td>
<td>false</td>
<td>Prevent page scrolling while menu is open</td>
</tr>
<tr>
<td id="options-scheme">
<a href="#options-scheme" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
scheme
</td>
<td><span class="label label-default label--string">string</span></td>
<td>black</td>
<td>Default schemes colors of MenuChef. You can <a href="#Theming-Vars">modify by yourself</a><br><br>Options: black, yellow, red, green, blue</td>
</tr>
<tr>
<td id="options-closeonclick">
<a href="#options-closeonclick" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
closeOnClick
</td>
<td><span class="label label-default label--boolean">boolean</span></td>
<td>true</td>
<td>Close MenuChef when itβs clicked in a link</td>
</tr>
<tr>
<td id="options-closeonclickoutside">
<a href="#options-closeonclickoutside" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
closeOnClickOutside
</td>
<td><span class="label label-default label--boolean">boolean</span></td>
<td>true</td>
<td>Close MenuChef when itβs clicked outside of kitchen (the menu it self)</td>
</tr>
<tr>
<td id="options-button">
<a href="#options-button" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
<a href="https://github.com/theus/MenuChef/releases/tag/v1.2.0" target="_blank" style="text-decoration: none;">
<span class="label label-info" style="zoom: 0.8;" title="Released in MenuChef's 1.2.0 version">v1.2.0</span>
</a>
button
</td>
<td><span class="label label-default label--string">string</span></td>
<td>MenuChef's hamburger button</td>
<td>HTML of MenuChef's button. You can pass your own button HTML like <code><i class="myicon"></i></code>.
<br>
Remember: The MenuChef's button is the same for open and for close (toggle). You can control appearence of button with CSS. The button container receives the class <code>is-active</code> when MenuChef is open.</td>
</tr>
<tr>
<td id="options-classes">
<a href="#options-classes" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
<a href="https://github.com/theus/MenuChef/releases/tag/v1.1.0" target="_blank" style="text-decoration: none;">
<span class="label label-info" style="zoom: 0.8;" title="Released in MenuChef's 1.1.0 version">v1.1.0</span>
</a>
classes
</td>
<td><span class="label label-default label--object">object</span></td>
<td>--</td>
<td>Classes is a manager of classes in links passed to MenuChef. It reveives 3 properties. All properties receives ONLY <code>array</code> of classes.
<br>
<b>exclude</b>: remove a class or an <code>array</code> of classes
<br>
<b>only</b>: remove ALL classes expect this one or an <code>array</code> of classes
<br>
<b>include</b>: add a class or an <code>array</code> of classes
<br>
ps: The order of hierarchy is respected. <b>exclude</b> > <b>only</b> > <b>include</b></td>
</tr>
<tr>
<td id="options-hamburger">
<a href="#options-hamburger" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
hamburger
</td>
<td><span class="label label-default label--string">string</span></td>
<td>boring</td>
<td>This option is powered by awesome lib <a href="https://jonsuh.com/hamburgers/" target="_blank">Hamburgers</a>, by Jonathan Sug. The operation can be seen at <a href="https://jonsuh.com/hamburgers/" target="_blank">lib demo site</a><br><br>Options: 3dx, 3dx-r, 3dy, 3dy-r, arrow, arrow-r, arrowalt, arrowalt-r, boring, collapse, collapse-r, elastic, elastic-r, emphatic, emphatic-r, slider, slider-r, spin, spin-r, spring, spring-r, stand, stand-r, squeeze, vortex, vortex-r</td>
</tr>
<tr>
<td id="options-bodyclassopen">
<a href="#options-bodyclassopen" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
bodyClassOpen
</td>
<td><span class="label label-default label--string">string</span></td>
<td>--</td>
<td>Append a class in <body> when the menu is opened</td>
</tr>
<tr>
<td id="options-kitchenclass">
<a href="#options-kitchenclass" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
kitchenClass
</td>
<td><span class="label label-default label--string">string</span></td>
<td>--</td>
<td>Append a class in MenuChef wrapper <br><br>ps. Kitchen is the wrapper of MenuChef, where all the ingredients are cooked</td>
</tr>
<tr>
<td id="options-kitchenopenclass">
<a href="#options-kitchenopenclass" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
kitchenOpenClass
</td>
<td><span class="label label-default label--string">string</span></td>
<td>--</td>
<td>Append a class in MenuChef when the same is opened</td>
</tr>
<tr>
<td id="options-onopen">
<a href="#options-onopen" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
onOpen
</td>
<td><span class="label label-default label--function">function</span></td>
<td>--</td>
<td>Callback function that's called when MenuChef is open</td>
</tr>
<tr>
<td id="options-onclose">
<a href="#options-onclose" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
onClose
</td>
<td><span class="label label-default label--function">function</span></td>
<td>--</td>
<td>Callback function that's called when MenuChef is close</td>
</tr>
<tr>
<td id="options-onclick">
<a href="#options-onclick" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
onClick
</td>
<td><span class="label label-default label--function">function</span></td>
<td>--</td>
<td>Callback function that's called when a link in MenuChef is clicked</td>
</tr>
<tr>
<td id="options-onready">
<a href="#options-onready" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
<a href="https://github.com/theus/MenuChef/releases/tag/v1.2.0" target="_blank" style="text-decoration: none;">
<span class="label label-info" style="zoom: 0.8;" title="Released in MenuChef's 1.2.0 version">v1.2.0</span>
</a>
onReady
</td>
<td><span class="label label-default label--function">function</span></td>
<td>--</td>
<td>Callback function that's called when MenuChef is ready and loaded</td>
</tr>
</tbody>
</table>
<h2 id="Theme-Options" class="NutricionalTable-table-title">Theme Options</h2>
<table class="table table-hover">
<thead>
<tr>
<th class="NutricionalTable-table-var">Variable</th>
<th class="NutricionalTable-table-type">Type</th>
<th class="NutricionalTable-table-default">Default</th>
<th class="NutricionalTable-table-desc">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td id="theme-theme">
<a href="#theme-theme" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
theme
</td>
<td><span class="label label-default label--string">string</span></td>
<td>full</td>
<td>Theme string (name)/object to personalize specific details of MenuChef theme</td>
</tr>
<tr>
<td id="theme-effectonopen">
<a href="#theme-effectonopen" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
effectOnOpen
</td>
<td><span class="label label-default label--string">string</span></td>
<td>--</td>
<td>Effects on open the menu. The effects available depends of theme. <br><br> side: smooth</td>
</tr>
<tr>
<td id="theme-direction">
<a href="#theme-direction" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
direction
</td>
<td><span class="label label-default label--string">string</span></td>
<td>right</td>
<td>Direction to open the menu. Directions available depends of theme. <br><br>side: left, right</td>
</tr>
<tr>
<td id="theme-pageeffect">
<a href="#theme-pageeffect" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
pageEffect
</td>
<td><span class="label label-default label--string">string</span></td>
<td>--</td>
<td>Effects on page when the menu is opening. Effects available depends of theme. <br><br>side: blur</td>
</tr>
</tbody>
</table>
<h2 id="Methods" class="NutricionalTable-table-title">Methods</h2>
<table class="table table-hover">
<thead>
<tr>
<th class="NutricionalTable-table-var">Variable</th>
<th class="NutricionalTable-table-type">Type</th>
<th class="NutricionalTable-table-default">Default</th>
<th class="NutricionalTable-table-desc">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td id="public-methods-menuchef-open">
<a href="#public-methods-menuchef-open" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
MenuChef.open()
</td>
<td><span class="label label-default label--function">function</span></td>
<td>--</td>
<td>Open MenuChef</td>
</tr>
<tr>
<td id="public-methods-menuchef-close">
<a href="#public-methods-menuchef-close" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
MenuChef.close()
</td>
<td><span class="label label-default label--function">function</span></td>
<td>--</td>
<td>Close MenuChef</td>
</tr>
<tr>
<td id="public-methods-menuchef-toggle-this-classe">
<a href="#public-methods-menuchef-toggle-this-classe" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
MenuChef.toggle([this, classe])
</td>
<td><span class="label label-default label--function">function</span></td>
<td>All parameters are optional <br> <code>classe</code> default is <code>is-active</code></td>
<td>Toggle MenuChef<br><br>When <code>this</code> is passed, toggle is fired and return the <code>classe</code> to the element <code>this</code>. Only works when the function toggle() itself is triggered</td>
</tr>
<tr>
<td id="public-methods-menuchef-destroy">
<a href="#public-methods-menuchef-destroy" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
MenuChef.destroy()
</td>
<td><span class="label label-default label--function">function</span></td>
<td>-</td>
<td>Destroy MenuChef instance, HTML inserts and watchers</td>
</tr>
</tbody>
</table>
<h2 id="Public-Variables" class="NutricionalTable-table-title">Public Variables</h2>
<table class="table table-hover">
<thead>
<tr>
<th class="NutricionalTable-table-var">Variable</th>
<th class="NutricionalTable-table-type">Type</th>
<th class="NutricionalTable-table-default">Default</th>
<th class="NutricionalTable-table-desc">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td id="public-variables-menuchef-version">
<a href="#public-variables-menuchef-version" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
MenuChef.version
</td>
<td><span class="label label-default label--string">string</span></td>
<td>version</td>
<td>Return MenuChef version number</td>
</tr>
<tr>
<td id="public-variables-menuchef-isopen">
<a href="#public-variables-menuchef-isopen" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
MenuChef.isOpen
</td>
<td><span class="label label-default label--boolean">boolean</span></td>
<td>null</td>
<td>Return <code>null</code> if MenuChef was never opened, <code>true</code>/<code>>false</code if MenuChef it's open or not</td>
</tr>
</tbody>
</table>
<h2 id="Theming-Vars" class="NutricionalTable-table-title">Theming Vars</h2>
<p>
MenuChef was created with <a href="http://caniuse.com/#feat=css-variables" target="_blank">CSS variables</a>, so it's very easy change some elements of the interface just changing a couple of variables, with sort, without change the CSS in fact. The support of CSS variables isn't complete yet in some browsers, so if you want support those browsers, you can overwrite CSS theme default below. If you choose overwrite the CSS theme, don't forget to put <code>!important</code> because the MenuChef's style is injected by JS, so you CSS can't overwrite by cascade.
</p>
<pre class="Code"><code class="language-css">/* open hamburger button */
.MenuChefOpen .hamburger-inner,
.MenuChefOpen .hamburger-inner::before,
.MenuChefOpen .hamburger-inner::after {
background-color: #A0A1A5 !important; /* fallback */
background-color: var(--MenuChef-scheme-color, #A0A1A5) !important; /* try use CSS var with fallback */
}
/* close hamburger button */
.MenuChefOpen.is-active .hamburger-inner,
.MenuChefOpen.is-active .hamburger-inner::before,
.MenuChefOpen.is-active .hamburger-inner::after {
background-color: #28292E !important; /* fallback */
background-color: var(--MenuChef-scheme-color, #28292E) !important; /* try use CSS var with fallback */
}
/* Menuchef kitchen: link's area */
.MenuChef {
background-color: #28292E !important; /* fallback */
background-color: var(--MenuChef-scheme-bgcolor, #28292E) !important; /* try use CSS var with fallback */
}
/* Menuchef links */
.MenuChef .MenuChef-links-link {
color: #A0A1A5 !important; /* fallback */
color: var(--MenuChef-scheme-color, #A0A1A5) !important; /* try use CSS var with fallback */
}
/* Menuchef links hover */
.MenuChef .MenuChef-links-link:hover {
color: #86878c !important; /* fallback */
color: var(--MenuChef-scheme-color-hover, #86878c) !important; /* try use CSS var with fallback */
}</code></pre>
<table class="table table-hover">
<thead>
<tr>
<th class="NutricionalTable-table-var">Variable</th>
<!-- <th class="NutricionalTable-table-type">Type</th> -->
<th dev-class="NutricionalTable-table-default">Default</th>
<th class="NutricionalTable-table-desc">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td id="theming-vars-menuchef-scheme-bgcolor">
<a href="#theming-vars-menuchef-scheme-bgcolor" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-scheme-bgcolor
</td>
<td>It depend's of scheme</td>
<td>MenuChef kitchen's background color</td>
</tr>
<tr>
<td id="theming-vars-menuchef-scheme-color">
<a href="#theming-vars-menuchef-scheme-color" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-scheme-color
</td>
<td>It depend's of scheme</td>
<td>Links color</td>
</tr>
<tr>
<td id="theming-vars-menuchef-scheme-color-hover">
<a href="#theming-vars-menuchef-scheme-color-hover" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-scheme-color-hover
</td>
<td>It depend's of scheme</td>
<td>Links hover color</td>
</tr>
</tbody>
</table>
<h2 id="Others-Vars" class="NutricionalTable-table-title">Others Vars</h2>
<table class="table table-hover">
<thead>
<tr>
<th class="NutricionalTable-table-var">Variable</th>
<!-- <th class="NutricionalTable-table-type">Type</th> -->
<th dev-class="NutricionalTable-table-default">Default</th>
<th class="NutricionalTable-table-desc">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td id="others-vars-menuchef-font-family">
<a href="#others-vars-menuchef-font-family" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-font-family
</td>
<td>'Helvetica', 'Arial', sans-serif</td>
<td>Font family of links</td>
</tr>
<tr>
<td id="others-vars-menuchef-font-size">
<a href="#others-vars-menuchef-font-size" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-font-size
</td>
<td>16px</td>
<td>Font size of links</td>
</tr>
<tr>
<td id="others-vars-menuchef-margin-bottom">
<a href="#others-vars-menuchef-margin-bottom" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-margin-bottom
</td>
<td>25px</td>
<td>Margin bottom between links</td>
</tr>
<tr>
<td id="others-vars-menuchef-text-transform">
<a href="#others-vars-menuchef-text-transform" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-text-transform
</td>
<td>uppercase</td>
<td>Text transform of links</td>
</tr>
<tr>
<td id="others-vars-menuchef-transition">
<a href="#others-vars-menuchef-transition" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-transition
</td>
<td>color linear .15s</td>
<td>Transition for links hover</td>
</tr>
<tr>
<td id="others-vars-menuchef-font-weight">
<a href="#others-vars-menuchef-font-weight" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-font-weight
</td>
<td>bold</td>
<td>Links font weight</td>
</tr>
<tr>
<td id="others-vars-menuchef-theme-side-width">
<a href="#others-vars-menuchef-theme-side-width" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-theme_side-width
</td>
<td>20%</td>
<td>Default width of MenuChef's kitchen</td>
</tr>
<tr>
<td id="others-vars-menuchef-theme-side-min-width">
<a href="#others-vars-menuchef-theme-side-min-width" class="NutricionalTable-table-link"><i class="fa fa-link"></i></a>
--MenuChef-theme_side-min-width
</td>
<td>240px</td>
<td>Minimum width of MenuChef's kitchen</td>
</tr>
</tbody>
</table>
<h2 id="Default-Options" class="NutricionalTable-table-title">Default Options</h2>
<p>
Example of all MenuChef default options
</p>
<pre class="Code"><code class="language-javascript">new MenuChef('.old-menu a', {
theme: {