labelup_faq 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +24 -0
  5. data/app/assets/images/labelup_faq/1_1.jpg +0 -0
  6. data/app/assets/images/labelup_faq/1_2.jpg +0 -0
  7. data/app/assets/images/labelup_faq/1_3.jpg +0 -0
  8. data/app/assets/images/labelup_faq/1_4.jpg +0 -0
  9. data/app/assets/images/labelup_faq/2_1.jpg +0 -0
  10. data/app/assets/images/labelup_faq/2_10.jpg +0 -0
  11. data/app/assets/images/labelup_faq/2_11.jpg +0 -0
  12. data/app/assets/images/labelup_faq/2_12.jpg +0 -0
  13. data/app/assets/images/labelup_faq/2_2.jpg +0 -0
  14. data/app/assets/images/labelup_faq/2_3.jpg +0 -0
  15. data/app/assets/images/labelup_faq/2_4.jpg +0 -0
  16. data/app/assets/images/labelup_faq/2_5.jpg +0 -0
  17. data/app/assets/images/labelup_faq/2_6.jpg +0 -0
  18. data/app/assets/images/labelup_faq/2_7.jpg +0 -0
  19. data/app/assets/images/labelup_faq/2_8.jpg +0 -0
  20. data/app/assets/images/labelup_faq/2_9.jpg +0 -0
  21. data/app/assets/images/labelup_faq/3_1.jpg +0 -0
  22. data/app/assets/images/labelup_faq/3_2.jpg +0 -0
  23. data/app/assets/images/labelup_faq/3_3.jpg +0 -0
  24. data/app/assets/images/labelup_faq/3_4.jpg +0 -0
  25. data/app/assets/images/labelup_faq/3_5.jpg +0 -0
  26. data/app/assets/images/labelup_faq/3_6.jpg +0 -0
  27. data/app/assets/images/labelup_faq/5_1.jpg +0 -0
  28. data/app/assets/images/labelup_faq/5_2.jpg +0 -0
  29. data/app/assets/images/labelup_faq/5_3.jpg +0 -0
  30. data/app/assets/images/labelup_faq/5_4.jpg +0 -0
  31. data/app/assets/images/labelup_faq/5_5.jpg +0 -0
  32. data/app/assets/images/labelup_faq/5_6.jpg +0 -0
  33. data/app/assets/images/labelup_faq/7_1.jpg +0 -0
  34. data/app/assets/images/labelup_faq/7_2.jpg +0 -0
  35. data/app/assets/images/labelup_faq/7_3.jpg +0 -0
  36. data/app/assets/images/labelup_faq/7_4.jpg +0 -0
  37. data/app/assets/images/labelup_faq/7_5.jpg +0 -0
  38. data/app/assets/images/labelup_faq/7_6.jpg +0 -0
  39. data/app/assets/images/labelup_faq/8_1.jpg +0 -0
  40. data/app/assets/images/labelup_faq/bg_2.jpg +0 -0
  41. data/app/assets/images/labelup_faq/bg_5.jpg +0 -0
  42. data/app/assets/images/labelup_faq/bg_6.jpg +0 -0
  43. data/app/assets/images/labelup_faq/bg_6_help.jpg +0 -0
  44. data/app/assets/images/labelup_faq/help_next.svg +41 -0
  45. data/app/assets/images/labelup_faq/ico.jpg +0 -0
  46. data/app/assets/images/labelup_faq/logowh.svg +28 -0
  47. data/app/assets/javascripts/labelup_faq/browser.sniff.js +23 -0
  48. data/app/assets/javascripts/labelup_faq/main.js.erb +326 -0
  49. data/app/assets/javascripts/labelup_faq.js +13 -0
  50. data/app/assets/stylesheets/labelup_faq/animate.css +1607 -0
  51. data/app/assets/stylesheets/labelup_faq/html5boilerplate.css +282 -0
  52. data/app/assets/stylesheets/labelup_faq/normalize.css +424 -0
  53. data/app/assets/stylesheets/labelup_faq/style.scss +858 -0
  54. data/app/assets/stylesheets/labelup_faq.scss +8 -0
  55. data/app/controllers/labelup_faq/help_controller.rb +13 -0
  56. data/app/helpers/labelup_faq/help_helper.rb +51 -0
  57. data/app/views/labelup_faq/help/begin.html.erb +39 -0
  58. data/app/views/labelup_faq/help/choose_performers.html.erb +86 -0
  59. data/app/views/labelup_faq/help/conclusion.html.erb +32 -0
  60. data/app/views/labelup_faq/help/create_campaign.html.erb +97 -0
  61. data/app/views/labelup_faq/help/intro.html.erb +24 -0
  62. data/app/views/labelup_faq/help/moderation.html.erb +49 -0
  63. data/app/views/labelup_faq/help/top_up.html.erb +52 -0
  64. data/app/views/labelup_faq/shared/_header_help.html.erb +16 -0
  65. data/app/views/labelup_faq/shared/_header_mob.html.erb +11 -0
  66. data/app/views/labelup_faq/shared/_menu.slim +6 -0
  67. data/app/views/labelup_faq/shared/_mob_content.html.erb +213 -0
  68. data/app/views/layouts/labelup_faq/help.slim +47 -0
  69. data/config/routes.rb +3 -0
  70. data/labelup_faq.gemspec +26 -0
  71. data/lib/labelup_faq/engine.rb +14 -0
  72. data/lib/labelup_faq/version.rb +3 -0
  73. data/lib/labelup_faq.rb +8 -0
  74. data/lib/tasks/labelup_faq_tasks.rake +4 -0
  75. metadata +159 -0
@@ -0,0 +1,858 @@
1
+ .help_tabb {
2
+ display: none;
3
+ font-family: 'Open Sans'; font-weight: 400;
4
+ font-size: 1.6vh;
5
+ line-height: 1;
6
+ color: #474747 ;
7
+ padding: 31px;
8
+ text-transform: uppercase;
9
+ text-decoration: none;
10
+
11
+ }
12
+ .header_help_border{
13
+ width: calc(100% - 200px);
14
+ border-bottom: 1px solid #e5e5e5;
15
+ position: relative;
16
+ float: right;
17
+ }
18
+ .all-content{
19
+ max-width: 1280px;
20
+ width: 100%;
21
+ position: relative;
22
+ display: table;
23
+ margin: 0 auto;
24
+
25
+ }
26
+ .help-content{
27
+ width: calc(100% - 200px);
28
+ margin-left: 200px;
29
+ position: relative;
30
+ display: table;
31
+ }
32
+
33
+ .left_bar_help {
34
+ width: 200px;
35
+ height: 100vh;
36
+ background-color: #333439;
37
+ position: fixed;
38
+ left: 0;
39
+ border-right: 1px solid #101117;
40
+ z-index: 9999;
41
+ min-width: 150px;
42
+ top: 0;
43
+ }
44
+
45
+ .help_mid_but {
46
+ display: table;
47
+ margin: 0 auto;
48
+ }
49
+
50
+ .mr18per {
51
+ margin-left: 230px;
52
+ }
53
+
54
+ .help_tab {
55
+ color: #a9afb5;
56
+ font-family: 'Open Sans', 'sans-serif';
57
+ font-weight: 500;
58
+ font-size: 12px;
59
+ padding: 15px 20px;
60
+ cursor: pointer;
61
+ transition: 0.2s;
62
+ list-style: none;
63
+ display: block;
64
+ text-decoration: none;
65
+ }
66
+
67
+ .help_tab:hover {
68
+ color: #fff;
69
+ }
70
+
71
+ .help_content {
72
+ width: 100%;
73
+ position: relative;
74
+ /*top: 100px;*/
75
+ }
76
+
77
+ .help_logo {
78
+ width: 100%;
79
+ background-color: #2c2d32;
80
+ border-bottom: 1px solid #27282d;
81
+ height: 80px;
82
+ background-image: image_url("labelup_faq/logowh.svg");
83
+ background-repeat: no-repeat;
84
+ background-position: center;
85
+ background-size: 36%;
86
+ display: block;
87
+ }
88
+
89
+ .help_active_tab {
90
+ color: #fff;
91
+ font-weight: 600;
92
+
93
+ }
94
+
95
+ .help_side {
96
+ width: 36%;
97
+ //float: left;
98
+ margin-top: 81px;
99
+ }
100
+
101
+ .hg100 {
102
+ height: calc(100vh - 82px);
103
+ }
104
+
105
+ .help_title {
106
+ font-family: 'Open Sans', 'sans-serif';
107
+ font-weight: 300;
108
+ font-size: 4vh;
109
+ padding: 13px 0;
110
+ float: left;
111
+ padding-left: 30px;
112
+ }
113
+
114
+ .help_side ul {
115
+ padding: 20px 0 0 0;
116
+ cursor: pointer;
117
+ }
118
+
119
+ .help_side ul li {
120
+ line-height: 1.5;
121
+ font-family: 'Open Sans', 'sans-serif';
122
+ font-weight: 400;
123
+ padding-bottom: 20px;
124
+ padding: 10px;
125
+ margin: 10px;
126
+ transition: 0.2s;
127
+ text-decoration: none;
128
+ list-style-type: none;
129
+ border-radius: 5px;
130
+ color: #000;
131
+ font-size: 14px;
132
+ }
133
+
134
+ .help_side ul li:hover {
135
+ background-color: #BBDFFB;
136
+ padding: 10px;
137
+ margin: 10px;
138
+ color: #000;
139
+ }
140
+
141
+ .help_side_active {
142
+ background-color: #2196F3;
143
+ padding: 10px;
144
+ margin: 10px;
145
+ color: #fff!important;
146
+ }
147
+ .help_side_active:hover{
148
+ background-color: #2196F3!important;
149
+ color: #fff!important;
150
+ }
151
+
152
+ .mr59L {
153
+ margin-left: calc(64% - 40px);
154
+ }
155
+ .help_block_img img {
156
+ //box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.25);
157
+ }
158
+
159
+ .help_block_img {
160
+ width: 100%;
161
+ position: relative;
162
+ height: 100%;
163
+ margin: 0 auto;
164
+ }
165
+ .wd51{
166
+ width: calc(64% - 300px) !important;
167
+ max-width: 1000px;
168
+ }
169
+ .pF {
170
+ position: fixed;
171
+ top: 0;
172
+ }
173
+
174
+ .help_next {
175
+ font-family: 'Open Sans', 'sans-serif';
176
+ font-weight: 800;
177
+ font-size: 14px;
178
+ color: #2196f3;
179
+ float: left;
180
+ text-decoration: none;
181
+ cursor: pointer;
182
+ margin-left: 10px;
183
+ padding: 10px;
184
+ border-radius: 10px;
185
+ transition: 0.2s;
186
+ margin-bottom: 100px;
187
+ }
188
+
189
+ .help_next:after {
190
+ width: 20px;
191
+ height: 20px;
192
+ content: '';
193
+ background-image: image_url('labelup_faq/help_next.svg');
194
+ background-size: 100% 100%;
195
+ z-index: 9999;
196
+ display: inline-block;
197
+ margin: -5px 0 -5px 10px;
198
+
199
+ }
200
+
201
+ .help_next:hover {
202
+ background-color: #f1f1f1;
203
+ }
204
+
205
+ .help_content ul {
206
+ padding: 0;
207
+ }
208
+
209
+ .help_title_tab_active {
210
+ background-color: #2196F3;
211
+ }
212
+
213
+ .help_title_tab {
214
+ color: #fff;
215
+ font-family: 'Open Sans', 'sans-serif';
216
+ font-weight: 500;
217
+ padding: 12px 48px;
218
+ border-radius: 5px;
219
+ margin: 5px 10px;
220
+ text-align: center;
221
+ cursor: pointer;
222
+ transition: 0.2s;
223
+ float: left;
224
+ font-size: 15px;
225
+ text-decoration: none;
226
+ }
227
+
228
+ .help_title_tab:hover {
229
+ background-color: #2088e1;
230
+ }
231
+
232
+ .help_change_block {
233
+ width: calc(84% - 1px);
234
+ position: absolute;
235
+ height: calc(100vh - 82px);
236
+ bottom: 0;
237
+ right: 0;
238
+ background-color: white;
239
+ z-index: 9999;
240
+ }
241
+
242
+ .help_change_block2 {
243
+ width: 100%;
244
+ position: relative;
245
+ height: calc(100vh - 82px);
246
+ float: right;
247
+ z-index: -1;
248
+ background-size: cover;
249
+ }
250
+
251
+ .help_icon {
252
+ background-image: image_url("labelup_faq/ico.jpg");
253
+ height: 100px;
254
+ width: 100px;
255
+ background-size: 100%;
256
+ margin: 0 auto;
257
+ opacity: 0.7;
258
+ }
259
+
260
+ .mrMid {
261
+ display: table;
262
+ margin: calc(50vh - 181px) auto;
263
+ }
264
+
265
+ .header_mob_author{
266
+ display: none;
267
+ }
268
+
269
+ .help_icon_layout{
270
+ width: 85%;
271
+ float: right;
272
+ position: relative;
273
+ height: 100vh;
274
+ }
275
+
276
+ .text_hh{
277
+ margin: 28px 0px;
278
+ font-size: 16px;
279
+ font-family: 'Open sans', sans-serif;
280
+ width: 600px;
281
+ text-align: center;
282
+ line-height: 1.5;
283
+ a {
284
+ color: #000;
285
+ }
286
+ }
287
+ .header_help{
288
+ width: 100%;
289
+ position: fixed;
290
+ top: 0;
291
+ left: 0;
292
+ background-color: white;
293
+ z-index: 999;
294
+ }
295
+ .mob_help{
296
+ display: none;
297
+ }
298
+ .wd30per{
299
+ width: 30%;
300
+ }
301
+
302
+ @media only screen
303
+ and (min-device-width : 768px)
304
+ and (max-device-width : 1024px)
305
+ and (orientation : landscape)
306
+ and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */
307
+ .header_mob_author{
308
+ display: block;
309
+ }
310
+ }
311
+
312
+ @media only screen
313
+ and (min-device-width : 768px)
314
+ and (max-device-width : 1024px)
315
+ and (orientation : portrait)
316
+ and (-webkit-min-device-pixel-ratio: 1) { /* STYLES GO HERE */
317
+ .header_mob_author{
318
+ display: block;
319
+ }
320
+ .help_icon_layout{width: 100%;}
321
+ .help_change_block2 {
322
+ height: 100vh;
323
+ margin-top: 100px;
324
+ }
325
+ .header_help {
326
+ display: none;
327
+ }
328
+ .header_help_border {
329
+ width: 100%;
330
+ }
331
+ .left_bar_help {
332
+ display: none;
333
+ }
334
+ .mob_help {
335
+ display: block;
336
+ }
337
+ .help_side {
338
+ display: none;
339
+ }
340
+ .help_change_block {
341
+ width: 100%;
342
+ position: fixed;
343
+ height: 120vh;
344
+ top: -10vh;
345
+
346
+ }
347
+ .help_title {
348
+ display: none;
349
+ }
350
+ }
351
+
352
+
353
+
354
+ @media only screen and (max-height: 500px) { /* STYLES GO HERE */
355
+ .header_mob_author{
356
+ display: block;
357
+ }
358
+ .help_icon_layout{width: 100%;}
359
+ .help_tab{
360
+ padding: 10px 20px;
361
+ }
362
+ .mob_help{
363
+ display: block;
364
+ }
365
+ .text_hh {
366
+ margin: 28px 10%;
367
+ font-size: 14px;
368
+ width: 80%;
369
+ text-align: center;
370
+ font-family: 'Open sans', sans-serif;
371
+ }
372
+ .help_change_block2 {
373
+ margin-top: 100px;
374
+ height: calc(100vh - 42px);
375
+
376
+ }
377
+ .header_help {
378
+ display: none;
379
+ }
380
+
381
+ .help_change_block {
382
+ width: 100%;
383
+ position: fixed;
384
+ height: calc(100vh - 42px);
385
+ }
386
+ .header_help_border {
387
+ width: 100%;
388
+ }
389
+ .left_bar_help {
390
+ display: none;
391
+ }
392
+ .mob_help {
393
+ display: block;
394
+ }
395
+ .help_side {
396
+ display: none;
397
+ }
398
+ .help_change_block {
399
+ width: 80.1%;
400
+ }
401
+ .help_title {
402
+ display: none;
403
+ }
404
+
405
+ .mob_help{
406
+ display: block;
407
+ }
408
+ }
409
+
410
+
411
+
412
+
413
+ @media only screen and (max-width: 900px) { /* STYLES GO HERE */
414
+ .header_mob_author{
415
+ display: block;
416
+ }
417
+ .help_icon_layout{width: 100%;}
418
+ .wd30per{
419
+ width: 80%;
420
+ }
421
+ .left_bar_help{display: none;}
422
+ .mob_help{
423
+ display: block;
424
+ }
425
+ .help_side{
426
+ display: none;
427
+ }
428
+
429
+ .header_help{display: none;}
430
+ .help_change_block2 {
431
+ margin-top: 100px;
432
+ height: calc(100vh - 42px);
433
+
434
+ }
435
+ .header_help {
436
+ display: none;
437
+ }
438
+ .mob_help{
439
+ display: block;
440
+ }
441
+ }
442
+
443
+
444
+
445
+
446
+ @media only screen
447
+ and (min-device-width : 375px)
448
+ and (max-device-width : 667px)
449
+ and (orientation : landscape) { /* STYLES GO HERE */
450
+ .header_mob_author{
451
+ display: block;
452
+ }
453
+ .help_icon_layout{width: 100%;}
454
+ .help_title_tab{
455
+ padding: 15px 62px;
456
+ }
457
+
458
+ .help_change_block2{
459
+ background-image: none;
460
+ }
461
+ .help_change_block2 {
462
+ height: 100vh;
463
+ }
464
+ .help_change_block {
465
+ height: 100vh;
466
+ }
467
+ .help_change_block {
468
+ width: 100%;
469
+ }
470
+ .help_icon {
471
+ display: none;
472
+ }
473
+ }
474
+
475
+
476
+
477
+
478
+
479
+ @media only screen
480
+ and (min-device-width : 375px)
481
+ and (max-device-width : 667px)
482
+ and (orientation : portrait) { /* STYLES GO HERE */
483
+ .header_mob_author{
484
+ display: block;
485
+ }
486
+ .help_icon_layout{width: 100%;}
487
+ .wd30per{
488
+ width: 80%;
489
+ }
490
+ .help_title_tab {
491
+ padding: 15px 50px;
492
+ }
493
+ .text_hh {
494
+ margin: 28px 10%;
495
+ font-size: 14px;
496
+ width: 80%;
497
+ text-align: center;
498
+ font-family: 'Open sans', sans-serif;
499
+ }
500
+ .tab_but_mob {
501
+ display: none;
502
+ }
503
+ .help_change_block2 {
504
+ height: calc(100vh - 42px);
505
+
506
+ }
507
+ .header_help {
508
+ display: none;
509
+ }
510
+
511
+ .help_tabb {
512
+ padding: 7px;
513
+ }
514
+ .header_help_border {
515
+ width: 100%;
516
+ }
517
+ .left_bar_help {
518
+ display: none;
519
+ }
520
+ .mob_help {
521
+ display: block;
522
+ }
523
+ .help_side {
524
+ display: none;
525
+ }
526
+ .help_change_block {
527
+ width: 100%;
528
+ position: fixed;
529
+ height: calc(100vh - 42px);
530
+ }
531
+ .help_title {
532
+ display: none;
533
+ }
534
+ }
535
+
536
+
537
+ @media only screen
538
+ and (min-device-width : 414px)
539
+ and (max-device-width : 736px)
540
+ and (orientation : landscape) { /* STYLES GO HERE */
541
+ .header_mob_author{
542
+ display: block;
543
+ }
544
+ .help_icon_layout{width: 100%;}
545
+ .help_title_tab{
546
+ padding: 15px 62px;
547
+ }
548
+
549
+ .help_change_block2{
550
+ background-image: none;
551
+ }
552
+ .help_change_block2 {
553
+ height: 100vh;
554
+ }
555
+ .help_change_block {
556
+ height: 100vh;
557
+ }
558
+ .help_change_block {
559
+ width: 100%;
560
+ }
561
+ .help_icon {
562
+ display: none;
563
+ }
564
+ }
565
+
566
+
567
+
568
+
569
+
570
+
571
+ @media only screen
572
+ and (min-device-width : 414px)
573
+ and (max-device-width : 736px)
574
+ and (orientation : portrait) { /* STYLES GO HERE */
575
+ .header_mob_author{
576
+ display: block;
577
+ }
578
+ .help_icon_layout{width: 100%;}
579
+ .wd30per{
580
+ width: 80%;
581
+ }
582
+ .text_hh {
583
+ margin: 28px 10%;
584
+ font-size: 14px;
585
+ width: 80%;
586
+ text-align: center;
587
+ font-family: 'Open sans', sans-serif;
588
+ }
589
+ .help_title_tab{
590
+ padding: 15px 62px;
591
+ }
592
+ .help_change_block2 {
593
+ height: calc(100vh - 42px);
594
+
595
+ }
596
+ .header_help {
597
+ display: none;
598
+ }
599
+
600
+ .header_help_border {
601
+ width: 100%;
602
+ }
603
+ .left_bar_help {
604
+ display: none;
605
+ }
606
+ .mob_help {
607
+ display: block;
608
+ }
609
+ .help_side {
610
+ display: none;
611
+ }
612
+ .help_change_block {
613
+ width: 100%;
614
+ position: fixed;
615
+ height: calc(100vh - 42px);
616
+ }
617
+ .help_title {
618
+ display: none;
619
+ }
620
+ }
621
+
622
+
623
+
624
+ @media screen
625
+ and (device-width: 360px)
626
+ and (device-height: 640px)
627
+ and (-webkit-device-pixel-ratio: 3)
628
+ and (orientation : portrait) { /* STYLES GO HERE */
629
+ .header_mob_author{
630
+ display: block;
631
+ }
632
+ .help_icon_layout{width: 100%;}
633
+ .wd30per{
634
+ width: 80%;
635
+ }
636
+ .help_title_tab{
637
+ padding: 15px 62px;
638
+ }
639
+ .text_hh {
640
+ margin: 28px 10%;
641
+ font-size: 14px;
642
+ width: 80%;
643
+ text-align: center;
644
+ font-family: 'Open sans', sans-serif;
645
+ }
646
+ .tab_but_mob {
647
+ display: none;
648
+ }
649
+
650
+ .help_change_block2 {
651
+ margin: 0!important;
652
+ height: calc(100vh);
653
+
654
+ }
655
+ .header_help {
656
+ display: none;
657
+ }
658
+
659
+ .tab_but {
660
+ margin-right: 8px;
661
+ }
662
+ .help_tabb {
663
+ padding: 7px;
664
+ }
665
+ .header_help_border {
666
+ width: 100%;
667
+ }
668
+ .left_bar_help {
669
+ display: none;
670
+ }
671
+ .mob_help {
672
+ display: block;
673
+ }
674
+ .help_side {
675
+ display: none;
676
+ }
677
+ .help_change_block {
678
+ width: 100%;
679
+ position: fixed;
680
+ height: calc(100vh - 42px);
681
+ }
682
+ .help_title {
683
+ display: none;
684
+ }
685
+ }
686
+
687
+
688
+
689
+
690
+
691
+ @media screen
692
+ and (device-width: 360px)
693
+ and (device-height: 640px)
694
+ and (-webkit-device-pixel-ratio: 3)
695
+ and (orientation : landscape) { /* STYLES GO HERE */
696
+ .header_mob_author{
697
+ display: block;
698
+ }
699
+ .help_icon_layout{width: 100%;}
700
+
701
+ .help_change_block2{
702
+ background-image: none;
703
+ }
704
+ .help_change_block2 {
705
+ margin: 0;
706
+ height: 100vh;
707
+ }
708
+ .help_change_block {
709
+ width: 100%;
710
+ height: 100vh;
711
+
712
+ }
713
+ .help_icon {
714
+ display: none;
715
+ }
716
+ }
717
+
718
+
719
+ @media only screen
720
+ and (min-device-width : 320px)
721
+ and (max-device-width : 568px)
722
+ and (orientation : portrait) { /* STYLES GO HERE */
723
+ .header_mob_author{
724
+ display: block;
725
+ }
726
+ .help_icon_layout{width: 100%;}
727
+ .mrMid{
728
+ transform: inherit;
729
+ margin: 60px auto;
730
+ }
731
+ .wd30per{
732
+ width: 80%;
733
+ }
734
+ .help_title_tab{
735
+ padding: 15px 40px;
736
+ }
737
+ .text_hh {
738
+ margin: 28px 10%;
739
+ font-size: 14px;
740
+ width: 80%;
741
+ text-align: center;
742
+ font-family: 'Open sans', sans-serif;
743
+ }
744
+ .tab_but_mob {
745
+ display: none;
746
+ }
747
+
748
+ .help_change_block2 {
749
+ height: calc(100vh - 42px);
750
+
751
+ }
752
+ .header_help {
753
+ display: none;
754
+ }
755
+
756
+ .tab_but {
757
+ margin-right: 8px;
758
+ }
759
+ .help_tabb {
760
+ padding: 7px;
761
+ }
762
+ .header_help_border {
763
+ width: 100%;
764
+ }
765
+ .left_bar_help {
766
+ display: none;
767
+ }
768
+ .mob_help {
769
+ display: block;
770
+ }
771
+ .help_side {
772
+ display: none;
773
+ }
774
+ .help_change_block {
775
+ width: 100%;
776
+ position: fixed;
777
+ height: calc(100vh - 42px);
778
+ }
779
+ .help_title {
780
+ display: none;
781
+ }
782
+ }
783
+
784
+
785
+
786
+ @media only screen
787
+ and (min-device-width : 320px)
788
+ and (max-device-width : 568px)
789
+ and (orientation : landscape) { /* STYLES GO HERE */
790
+ .header_mob_author{
791
+ display: block;
792
+ }
793
+ .help_icon_layout{width: 100%;}
794
+ .help_change_block2{
795
+ background-image: none;
796
+ margin: 0;
797
+ }
798
+ .help_change_block2 {
799
+ height: 100vh;
800
+ }
801
+ .help_change_block {
802
+ width: 100%;
803
+ height: 100vh;
804
+
805
+ }
806
+ .help_icon {
807
+ display: none;
808
+ }
809
+ }
810
+
811
+
812
+ .mob_help{
813
+ width: 95%;
814
+ float: right;
815
+ position: relative;
816
+ margin-right: 2.5%;
817
+ }
818
+ .mob_help .title{
819
+ text-align: center;
820
+ font-family: 'Open Sans', sans-serif;
821
+ font-weight: 300;
822
+ margin-top: 80px;
823
+ padding: 10px;
824
+ font-size: 31px;
825
+ }
826
+ .mob_help .text{
827
+ padding: 32px 0;
828
+ margin-bottom: 32px;
829
+ line-height: 1.5;
830
+ font-size: 16px;
831
+ border-bottom: 1px solid #d6d6d6;
832
+ font-family: 'Open Sans', sans-serif;
833
+ font-weight: 400;
834
+ }
835
+ .mob_help .pic{
836
+ margin-left: 0%;
837
+ width: 100%;
838
+ }
839
+ .help_contents{
840
+ width: 105%;
841
+ margin-top: 51px;
842
+ background-color: #333439;
843
+ margin-left: -2.5%;
844
+ padding: 50px 0;
845
+ }
846
+ .help_contents_tab{
847
+ color: white;
848
+ text-align: center;
849
+ width: 100%;
850
+ padding: 10px 0;
851
+ display: block;
852
+ text-decoration: none;
853
+ text-transform: none;
854
+ font-family: 'Open Sans', sans-serif;
855
+ font-size: 16px;
856
+
857
+ }
858
+ .disNN{display: none!important;}