-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.mobirise
3587 lines (3587 loc) · 253 KB
/
project.mobirise
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
{
"settings": {
"name": "PhoneCash3x",
"currentPage": "GOredirect.html",
"theme": {
"name": "mobirise4",
"title": "Mobirise 4",
"styling": {
"primaryColor": "#149dcc",
"secondaryColor": "#ff3366",
"successColor": "#F7ED4A",
"infoColor": "#82786E",
"warningColor": "#879A9F",
"dangerColor": "#B1A374",
"mainFont": "Rubik",
"display1Font": "Rubik",
"display1Size": 4.25,
"display2Font": "Rubik",
"display2Size": 3,
"display5Font": "Rubik",
"display5Size": 1.5,
"display7Font": "Rubik",
"display7Size": 1,
"display4Font": "Rubik",
"display4Size": 1,
"isRoundedButtons": true,
"isAnimatedOnScroll": false,
"isScrollToTopButton": false
},
"additionalSetColors": [
"#000000"
]
},
"versionFirst": "4.1.2",
"uniqCompNum": 75,
"versionPublish": "4.1.2",
"path": "@PROJECT_PATH@",
"screenshot": "screenshot.png"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Home",
"meta_descr": "Half Human and Half Robot, Social Media Booster",
"header_custom": "",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
}
},
"_name": "content5",
"_customHTML": "<section class=\"mbr-section content5\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"8\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"4\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/phonecash3x-official-image-pxfmr-512x512.png\" selected parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#0f7699\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#232323\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.4\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center mbr-bold mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-1\">\n PhoneCash3x</h2>\n <h3 mbr-if=\"showSubtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-subtitle\"><b><i>Social Media Booster and Traffic Generator</i></b></h3>\n <p class=\"mbr-text align-center mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-article data-multiline>\n Shape your future web project with sharp design and refine coded functions\n </p>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrLink,-mbrBtnAdd,-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-white-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tsvbpOesF2",
"_anchor": "content5-4",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
},
".mbr-text P": {
"color": "#cc2952"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"4\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><p><b>Important Notice for Installation : After downloading any file from this site, go to download folder in your mobile device, click on the downloaded file to start installation.</b></p><p><b>Ignore this notice if you download directly from google play store. </b></p></div>\n </div>\n </div>\n</section>",
"_cid": "tvrZNRcOhp",
"_anchor": "content1-1s",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><p><b>Description! </b> PhoneCash3X is an<i><b> half human and half robotic Mobile Application.</b></i> Its controled by human and process as a robot. The Processing feature can be done by either human or by a robot. it has been build and programed for helping and inhencing individuals on their <b>Social Account, Adsense Account (web), Blog Account and Admob Account (mobile).</b> Social Account include Youtube Channel, Facebook, Instagram, Twitter and more.</p><p> Currently, its ready for discipline minded people like you .\n</p><div> As it stand now,<b> PhoneCash3X is basically</b> for <i>boosting and enhencement on Youtube (Watch hour and Subscribers), facebook and Google Admob and Blog Monitization.</i> Other secondary purposes are Followers, Likers and Commentary, facebook, Tiktok e.t.c.</div><div>PhoneCash3X was first release in 27th september 2019. For more information about release date click <i><a href=\"releasedate.html\">here</a></i>.</div><p></p></div>\n </div>\n </div>\n</section>",
"_cid": "tsvkEHyuaE",
"_anchor": "content1-5",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
},
".mbr-text B": {
"color": "#cc2952"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"2\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><b>PhoneCash3x uses Key to identify valid user. Purchasing of PhoneCash3x Key is done through the Mobile Application or through the Blog page. Requirements, prices, key type, working principle, configuration and procedure to purchase key are all listed in the blog page, click <i><a href=\"https://www.blogger.com/blog/post/edit/7466388613340441346/3584550359153622242\">here </a></i>to visit blog page.</b></div>\n </div>\n </div>\n</section>",
"_cid": "tvs1O4zy5F",
"_anchor": "content1-1t",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor"
},
"_name": "content8",
"_customHTML": "<section class=\"mbr-section content8\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Backgroud Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row title\">\n <div class=\"col-12 col-md-8\">\n <div class=\"mbr-section-btn align-center\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-primary\" href=\"https://www.dropbox.com/s/3g9ew1v4td1zynl/PhoneCash3x.apk?dl=1\"><span class=\"mbri-down mbr-iconfont mbr-iconfont-btn\"></span>Download PhoneCash3x</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tsO3ctBihP",
"_anchor": "content8-u",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
}
},
"_name": "content2",
"_customHTML": "<section class=\"mbr-section article content1\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-multiline mbr-article>\n <blockquote><p><b>PhoneCash3X in respect to Youtube !</b> Officially, Youtubers make money once their channel hits the youtube demand (1000 subscriber and 4000 whatch hours on your channel). Benefit after achiving youtube demand; channel owner will be allowed to activate google advert (ads) on any of their youtube videos which will generate revenu to the owners, Youtube will mobilize the channel owner with <b>$1000</b> dollars as to multivate your hard work.\n</p><p><span style=\"font-size: 1.09rem;\">Popularity of the channel can attract external company to advertize on the your channel. </span></p><p><span style=\"font-size: 1.09rem;\"><b>Processing Mode of PhoneCash3x</b> : Full Robotic (Automation) Mode, Full Human Controll Mode, Half robot and Half Human processing mode. </span></p><p><span style=\"font-size: 1.09rem;\">These Robotic and Human Controlled Application has been programed in a way to help in <b>enhencing and managing</b> Youtube Accounts via through the app and its administrators in less than a month, Youtube Channel processes will be handle orderly. PhoneCash3x is not free. <a href=\"azilyzer.html\">Azilyzer</a> is the free version of PhoneCash3x. <a href=\"MartWeb.html\">MartWeb(s)</a> are Phonecash3x Task-Procesor. <b><a href=\"GOredirect.html\">GOredirect </a></b>allows you to create account for MartWeb and Maintain Multiple account as a single account. GOredirect also track lost devices and sms . Sms tracking is base on approved phone numbers inserted by the user into the app, Tracking of bank sms where disabled in GOredirect. Learn more about <a href=\"GOredirect.html\">GOredirect</a>. </span></p></blockquote>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tsweEe3OGK",
"_anchor": "content2-h",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor"
},
"_name": "content8",
"_customHTML": "<section class=\"mbr-section content8\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Backgroud Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row title\">\n <div class=\"col-12 col-md-8\">\n <div class=\"mbr-section-btn align-center\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-primary\" href=\"GOredirect.html\"><span class=\"mbri-down mbr-iconfont mbr-iconfont-btn\"></span>go to GOredirect for Download</a></div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content8-1f",
"_cid": "tvl9DYuMpk",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
}
},
"_name": "content2",
"_customHTML": "<section class=\"mbr-section article content1\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-multiline mbr-article>\n <blockquote> <b>Google Admob And Private App !</b> Phonecash3X in respect to Google Admob. Google Admob is a medium through which google advertise public product and service owned by their third party (popup ads.) through a developed applications (Governed with google policy, term and condition), and at same process developers or app owners earn money from their developed appllications (free apps). While using Phonecash3X, you are automatically a profitable earner, you don't need to be a developer, and no special skills is needed, so you can also earn from it as long phonecash3x exist. All you need is to consult PhoneCash3x developer for your own app / private app. We use the term, <b>Private App</b> as it does not belong to all members in the <b>PhoneCash3x system</b>. Here, the term <b>private app</b> generaly refers to <b>blog page, web site, and mobile app.</b></blockquote>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tsw7PNVFxD",
"_anchor": "content2-g",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
}
},
"_name": "content2",
"_customHTML": "<section class=\"mbr-section article content1\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-multiline mbr-article>\n <blockquote><p><span style=\"font-style: normal;\"><b>Social Media;</b> PhoneCash3X create triffic on socail media of the teem members. Teem members are registered members with key access to the account. visit the </span><a href=\"https://www.blogger.com/blog/post/edit/7466388613340441346/3584550359153622242\">blog </a><span style=\"font-style: normal;\"><a href=\"https://www.blogger.com/blog/post/edit/7466388613340441346/3584550359153622242\">page</a> for more information about key. </span></p><p><span style=\"font-size: 1.09rem; font-style: normal;\">PhoneCash3X also manages social media account (youtube account, google admob and all interested accounted) I</span><span style=\"font-size: 1.09rem;\">ncluding Blog monitization</span><span style=\"font-size: 1.09rem; font-style: normal;\">.</span></p></blockquote>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tswPSm22Vm",
"_anchor": "content2-o",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
}
},
"_name": "content2",
"_customHTML": "<section class=\"mbr-section article content1\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-multiline mbr-article>\n <blockquote><p><b><a href=\"MartWeb.html\">MartWebs </a></b>are ant versions of PhoneCash3x, they are meant to carry out boosting operation for PhoneCash3x.\n</p><p><span style=\"font-size: 1.09rem;\"> MartWebs (MatWeb 1 - Martweb 10) works together as a single App. This is splited to control account and manage device memory easily. Click <a href=\"MartWeb.html\">here </a>to open .</span></p></blockquote>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tswPb3fokQ",
"_anchor": "content2-n",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor"
},
"_name": "content8",
"_customHTML": "<section class=\"mbr-section content8\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Backgroud Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row title\">\n <div class=\"col-12 col-md-8\">\n <div class=\"mbr-section-btn align-center\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-primary\" href=\"MartWeb.html\"><span class=\"mbri-down mbr-iconfont mbr-iconfont-btn\"></span>go to MartWeb for Download</a></div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content8-x",
"_cid": "tsO5VYDJhg",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
},
".mbr-text B": {
"color": "#767676"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><b>In-App Earning,</b> PhoneCash3X allows users to make extra gain in their referal program (optional). Users also earn as they perform in-App task.</div>\n </div>\n </div>\n</section>",
"_cid": "tsMmlshWFq",
"_anchor": "content1-p",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
".navbar": {
"padding": ".5rem 0",
"background": "@menuBgColor",
"transition": "none",
"min-height": "77px"
},
".navbar-dropdown.bg-color.transparent.opened": {
"background": "@menuBgColor"
},
"a": {
"font-style": "normal"
},
".nav-item": {
"& span": {
"padding-right": "0.4em",
"line-height": "0.5em",
"vertical-align": "text-bottom",
"position": "relative",
"top": "-0.2em",
"text-decoration": "none"
},
"& a": {
"padding": "0.7rem 0 !important",
"margin": "0rem .65rem !important"
}
},
".btn": {
"padding": "0.4rem 1.5rem",
".mbr-iconfont": {
"font-size": "1.6rem"
},
"display": "inline-flex",
"align-items": "center"
},
".menu-logo": {
"margin-right": "auto",
".navbar-brand": {
"display": "flex",
"margin-left": "5rem",
"padding": "0",
"transition": "padding .2s",
"min-height": "3.8rem",
"align-items": "center",
".navbar-caption-wrap": {
"display": "-webkit-flex",
"-webkit-align-items": "center",
"align-items": "center",
"word-break": "break-word",
"min-width": "7rem",
"margin": ".3rem 0",
".navbar-caption": {
"line-height": "1.2rem !important",
"padding-right": "2rem"
}
},
".navbar-logo": {
"font-size": "4rem",
"transition": "font-size 0.25s",
"& img": {
"display": "flex"
},
".mbr-iconfont": {
"transition": "font-size 0.25s"
}
}
}
},
".navbar-toggleable-sm .navbar-collapse": {
"justify-content": "flex-end",
"-webkit-justify-content": "flex-end",
"padding-right": "5rem",
"width": "auto",
".navbar-nav": {
"flex-wrap": "wrap",
"-webkit-flex-wrap": "wrap",
"padding-left": "0",
".nav-item": {
"-webkit-align-self": "center",
"align-self": "center"
}
},
".navbar-buttons": {
"padding-left": "0",
"padding-bottom": "0"
}
},
".dropdown": {
".dropdown-menu": {
"background": "@menuBgColor",
"display": "none",
"position": "absolute",
"min-width": "5rem",
"padding-top": "1.4rem",
"padding-bottom": "1.4rem",
"text-align": "left",
".dropdown-item": {
"width": "auto",
"padding": "0.235em 1.5385em 0.235em 1.5385em !important",
"&::after": {
"right": "0.5rem"
}
},
".dropdown-submenu": {
"margin": "0"
}
},
"&.open > .dropdown-menu": {
"display": "block"
}
},
".navbar-toggleable-sm": {
"&.opened:after": {
"position": "absolute",
"width": "100vw",
"height": "100vh",
"content": "''",
"background-color": "rgba(0, 0, 0, 0.1)",
"left": "0",
"bottom": "0",
"transform": "translateY(100%)",
"-webkit-transform": "translateY(100%)",
"z-index": "1000"
}
},
".navbar.navbar-short": {
"min-height": "60px",
"transition": "all .2s",
"& .navbar-toggler-right": {
"top": "20px"
},
"& .navbar-logo a": {
"font-size": "2.5rem !important",
"line-height": "2.5rem",
"transition": "font-size 0.25s",
"& .mbr-iconfont": {
"font-size": "2.5rem !important"
},
"& img": {
"height": "3rem !important"
}
},
"& .navbar-brand": {
"min-height": "3rem"
}
},
"button.navbar-toggler": {
"width": "31px",
"height": "18px",
"cursor": "pointer",
"transition": "all .2s",
"top": "1.5rem",
"right": "1rem",
"&:focus": {
"outline": "none"
},
".hamburger span": {
"position": "absolute",
"right": "0",
"width": "30px",
"height": "2px",
"border-right": "5px",
"background-color": "@hamburgerColor",
"&:nth-child(1)": {
"top": "0",
"transition": "all .2s"
},
"&:nth-child(2)": {
"top": "8px",
"transition": "all .15s"
},
"&:nth-child(3)": {
"top": "8px",
"transition": "all .15s"
},
"&:nth-child(4)": {
"top": "16px",
"transition": "all .2s"
}
}
},
"nav.opened .hamburger span": {
"&:nth-child(1)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all .2s"
},
"&:nth-child(2)": {
"-webkit-transform": "rotate(45deg)",
"transform": "rotate(45deg)",
"transition": "all .25s"
},
"&:nth-child(3)": {
"-webkit-transform": "rotate(-45deg)",
"transform": "rotate(-45deg)",
"transition": "all .25s"
},
"&:nth-child(4)": {
"top": "8px",
"width": "0",
"opacity": "0",
"right": "50%",
"transition": "all .2s"
}
},
".collapsed": {
".btn": {
"display": "flex"
},
".navbar-collapse": {
"display": "none !important",
"padding-right": "0 !important",
"&.collapsing,&.show": {
"display": "block !important",
".navbar-nav": {
"display": "block",
"text-align": "center",
".nav-item": {
"clear": "both",
"& when (@showButtons = false)": {
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
".navbar-buttons": {
"text-align": "center",
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
"button.navbar-toggler": {
"display": "block"
},
".navbar-brand": {
"margin-left": "1rem !important",
"margin-top": ".5rem"
},
".navbar-toggleable-sm": {
"flex-direction": "column",
"-webkit-flex-direction": "column"
},
".dropdown": {
".dropdown-menu": {
"width": "100%",
"text-align": "center",
"position": "relative",
"opacity": "0",
"display": "block",
"height": "0",
"visibility": "hidden",
"padding": "0",
"transition-duration": ".5s",
"transition-property": "opacity,padding,height"
},
"&.open > .dropdown-menu": {
"position": "relative",
"opacity": "1",
"height": "auto",
"padding": "1.4rem 0",
"visibility": "visible"
},
".dropdown-submenu": {
"left": "0",
"text-align": "center",
"width": "100%"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]::after": {
"margin-top": "0",
"position": "inherit",
"right": "0",
"top": "50%",
"display": "inline-block",
"width": "0",
"height": "0",
"margin-left": ".3em",
"vertical-align": "middle",
"content": "\"\"",
"border-top": ".30em solid",
"border-right": ".30em solid transparent",
"border-left": ".30em solid transparent"
}
}
},
"@media (max-width: 991px)": {
"img": {
"height": "3.8rem !important"
},
".btn": {
"display": "flex"
},
"button.navbar-toggler": {
"display": "block"
},
".navbar-brand": {
"margin-left": "1rem !important",
"margin-top": ".5rem"
},
".navbar-toggleable-sm": {
"flex-direction": "column",
"-webkit-flex-direction": "column"
},
".navbar-collapse": {
"display": "none !important",
"padding-right": "0 !important",
"&.collapsing,&.show": {
"display": "block !important",
".navbar-nav": {
"display": "block",
"text-align": "center",
".nav-item": {
"clear": "both",
"& when (@showButtons = false)": {
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
".navbar-buttons": {
"text-align": "center",
"&:last-child": {
"margin-bottom": "1rem"
}
}
}
},
".dropdown": {
".dropdown-menu": {
"width": "100%",
"text-align": "center",
"position": "relative",
"opacity": "0",
"display": "block",
"height": "0",
"visibility": "hidden",
"padding": "0",
"transition-duration": ".5s",
"transition-property": "opacity,padding,height"
},
"&.open > .dropdown-menu": {
"position": "relative",
"opacity": "1",
"height": "auto",
"padding": "1.4rem 0",
"visibility": "visible"
},
".dropdown-submenu": {
"left": "0",
"text-align": "center",
"width": "100%"
},
".dropdown-toggle[data-toggle=\"dropdown-submenu\"]::after": {
"margin-top": "0",
"position": "inherit",
"right": "0",
"top": "50%",
"display": "inline-block",
"width": "0",
"height": "0",
"margin-left": ".3em",
"vertical-align": "middle",
"content": "\"\"",
"border-top": ".30em solid",
"border-right": ".30em solid transparent",
"border-left": ".30em solid transparent"
}
}
}
},
"_name": "menu1",
"_customHTML": "<section class=\"menu\" group=\"Menu\" plugins=\"DropDown, TouchSwipe\" always-top global once=\"menu\" not-draggable position-absolute>\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Show Logo\" name=\"showLogo\" checked>\n <input type=\"range\" title=\"Logo Size\" inline name=\"logoSize\" min=\"3.8\" max=\"8\" step=\"0.1\" value=\"3.8\" condition=\"showLogo\">\n <input type=\"checkbox\" title=\"Show Brand Name\" name=\"showBrand\" checked>\n <input type=\"checkbox\" title=\"Show Menu Items\" name=\"showItems\" checked>\n <input type=\"checkbox\" title=\"Show Button(s)\" name=\"showButtons\" checked>\n <input type=\"checkbox\" title=\"Sticky\" name=\"sticky\" checked>\n <input type=\"checkbox\" title=\"Collapsed\" name=\"collapsed\">\n <input type=\"checkbox\" title=\"Transparent\" name=\"transparent\">\n <input type=\"color\" title=\"Hamburger Color\" name=\"hamburgerColor\" value=\"#ffffff\">\n <input type=\"color\" title=\"Background Color\" name=\"menuBgColor\" value=\"#333333\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <nav class=\"navbar navbar-dropdown align-items-center\" mbr-class=\"{'navbar-fixed-top': sticky,\n 'navbar-toggleable-sm': !collapsed,\n 'collapsed': collapsed,\n 'bg-color transparent': transparent}\">\n <button class=\"navbar-toggler navbar-toggler-right\" type=\"button\" data-toggle=\"collapse\" data-target=\"#navbarSupportedContent\" aria-controls=\"navbarSupportedContent\" aria-expanded=\"false\" aria-label=\"Toggle navigation\">\n <div class=\"hamburger\">\n <span></span>\n <span></span>\n <span></span>\n <span></span>\n </div>\n </button>\n <div class=\"menu-logo\">\n <div class=\"navbar-brand\">\n <span mbr-if=\"showLogo\" class=\"navbar-logo\">\n <a href=\"index.html\">\n <img src=\"@PROJECT_PATH@/assets/images/phonecash3x-official-image-pxfmr-512x512.png\" alt=\"Mobirise\" mbr-style=\"{'height': logoSize + 'rem'}\" title>\n </a>\n </span>\n <span mbr-if=\"showBrand\" mbr-buttons mbr-theme-style=\"display-4\" class=\"navbar-caption-wrap\" data-toolbar=\"-mbrBtnMove,-mbrBtnAdd,-mbrBtnRemove\"><a class=\"navbar-caption text-white\" data-app-selector=\".navbar-caption\" href=\"index.html\">PhoneCash3x</a></span>\n </div>\n </div>\n <div class=\"collapse navbar-collapse\" id=\"navbarSupportedContent\">\n <ul mbr-if=\"showItems\" mbr-menu class=\"navbar-nav nav-dropdown\" mbr-theme-style=\"display-4\" mbr-class=\"{'nav-right': !showButtons,'navbar-nav-top-padding': isPublish && !showBrand && !showLogo}\"><li class=\"nav-item\">\n <a class=\"nav-link link text-white\" href=\"index.html\" data-app-selector=\".nav-link,.dropdown-item\">\n <span class=\"mbri-home mbr-iconfont mbr-iconfont-btn\"></span> Home </a>\n </li>\n <li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"GOredirect.html\" data-app-selector=\".nav-link,.dropdown-item\">GOredirect</a></li><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"MartWeb.html\" data-app-selector=\".nav-link,.dropdown-item\">MartWeb</a></li><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"azilyzer.html\" data-app-selector=\".nav-link,.dropdown-item\">Adzilyzer</a></li><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"releasedate.html\" data-app-selector=\".nav-link,.dropdown-item\">ReleaseNote</a></li><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"https://www.blogger.com/blog/post/edit/7466388613340441346/3584550359153622242\" data-app-selector=\".nav-link,.dropdown-item\">Blog</a></li><li class=\"nav-item\"><a class=\"nav-link link text-white\" href=\"contactus.html\" data-app-selector=\".nav-link,.dropdown-item\">Contact Us</a></li></ul>\n <div mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" class=\"navbar-buttons mbr-section-btn\"><a class=\"btn btn-sm btn-primary\" href=\"https://www.dropbox.com/s/3g9ew1v4td1zynl/PhoneCash3x.apk?dl=1\">\n <span class=\"mbri-save mbr-iconfont mbr-iconfont-btn \" data-app-selector=\".mbr-iconfont-btn\"></span>PhoneCash3x</a></div>\n </div>\n </nav>\n</section>",
"_cid": "tsvMQLxweW",
"_anchor": "menu1-d",
"_protectedParams": [],
"_global": true,
"_once": "menu",
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><p><b><a href=\"azilyzer.html\">Adzilyzer</a></b><a href=\"azilyzer.html\"> </a>is a Powerful and Excellent Universal Booster, its a public version of PhoneCash3x. Its also help in boosting Social account. The good part is, its free and easy to use. click <a href=\"azilyzer.html\">here </a>to open.</p></div>\n </div>\n </div>\n</section>",
"_cid": "tswNTjE8kC",
"_anchor": "content1-l",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor"
},
"_name": "content8",
"_customHTML": "<section class=\"mbr-section content8\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"color\" title=\"Backgroud Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row title\">\n <div class=\"col-12 col-md-8\">\n <div class=\"mbr-section-btn align-center\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\"><a class=\"btn btn-primary\" href=\"azilyzer.html\"><span class=\"mbri-down mbr-iconfont mbr-iconfont-btn\"></span>go to AZILYZER for Download</a></div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tsO4PN6u9k",
"_anchor": "content8-v",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><p><span style=\"font-size: 1rem;\">Every thing in Adilyzer is automatic. Performance calculation, Browse and Earn, Ads popup and earn, Whatch video and earn, Subscrib and earn, and so on. User submit the acount once there coin have reach a certain amount. Public can freely add there social account if there in-app earning reach a certain limit as specifid in the app. Users can pay to add there social account. Coin can be transfered from one user to another. During coin transfer, charges will be debited through the coin. This app is the most powerfull version of PhoneCash3x. </span></p></div>\n </div>\n </div>\n</section>",
"_anchor": "content1-w",
"_cid": "tsO5zjtDbi",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"& when (@bg-type = 'color')": {
"background": "linear-gradient(45deg, @bg-value, @color2)"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-figure": {
"@media (min-width: 992px)": {
"padding-left": "4rem"
},
"@media (max-width: 991px)": {
"padding-top": "3rem"
}
},
".mbr-section-title": {
"color": "#7f1933"
},
".mbr-text, .mbr-section-btn": {
"color": "#000000"
}
},
"_name": "header7",
"_customHTML": "<section class=\"header7\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\" checked>\n <input type=\"range\" inline title=\"Media Size\" name=\"mediaSize\" min=\"10\" max=\"200\" step=\"5\" value=\"100\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background5.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"color\" name=\"color2\" title=\"Color 2\" value=\"#ffffff\" condition=\"bg.type=='color'\" selected>\n\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#000000\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n\n <div class=\"media-content align-right\">\n <h1 class=\"mbr-section-title mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">PhoneCash3x Video Tutorial</h1>\n <div class=\"mbr-section-text mbr-white pb-3\">\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\" data-app-selector=\".mbr-text, .mbr-section-btn\">All necessary information from start to finish are all coverd in the video series.<br>For more information on PhoneCash3x including How to generate money through it, how to get keys, users management, automation, Payment patern, How it work, MartWeb, Adzilyzer and other stuffs, click bellow button.</p>\n </div>\n <div class=\"mbr-section-btn\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-buttons mbr-theme-style=\"display-4\"><a class=\"btn btn-md btn-primary\" href=\"https://youtube.com/playlist?list=PLzS7iirXEfrK6Ha9X2KB3A8FxG0d9T5Jz\">LEARN MORE</a></div>\n </div>\n\n <div mbr-video class=\"mbr-figure\" mbr-style=\"{'width': mediaSize + '%'}\">\n <iframe src=\"https://www.youtube.com/watch?v=AxSqoNvx0fk&t=6s&loop=0&autoplay=0\"></iframe>\n </div>\n\n </div>\n </div>\n</section>",
"_cid": "tt1DgAw1AJ",
"_anchor": "header7-1e",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
}
]
},
"MartWeb.html": {
"settings": {
"meta_descr": "Configure and start earning. Martweb uses ant work force to execute task. Martweb is the processing power of PhoneCash3x",
"title": "MartWeb",
"order": 5
},
"components": [
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-section-subtitle": {
"color": "#767676"
}
},
"_name": "content4",
"_customHTML": "<section class=\"mbr-section content4\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"8\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center pb-3 mbr-fonts-style\" mbr-theme-style=\"display-2\">\n MartWeb(s)</h2>\n <h3 mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-fonts-style\" mbr-theme-style=\"display-5\">MartWeb(s) are web browser that have memory controllable area and workspace recorder. Workspace recorder help you to progressively continue with your previous acctivities in each martweb. MartWeb are the Ant Features of PhoneCash3x, MartWeb help you to Excel without Struggel. When Task are handled by ants, rest becomes the testimony. MartWeb are Task Breaker. All MartWeb works to communicate with each other. </h3>\n <div class=\"mbr-section-btn align-center py-4\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrLink,-mbrBtnAdd,-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-black-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tsvBrifDIx",
"_anchor": "content4-9",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"& when (@fullWidth = false)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"background": "@bgColor",
"& when (@gradientBg)": {
"background": "linear-gradient(45deg, @bgColor, @color2)"
},
".video-block": {
"margin": "auto",
"& when (@fullWidth)": {
"width": "100% !important"
}
},
"@media (max-width: 768px)": {
".video-block": {
"width": "100% !important"
}
}
},
"_name": "video1",
"_customHTML": "<section group=\"Images & Videos\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" value=\"0\" step=\"1\" condition=\"fullWidth==false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" value=\"0\" step=\"1\" condition=\"fullWidth==false\">\n <input type=\"range\" inline title=\"Width\" name=\"videoSize\" min=\"20\" max=\"100\" value=\"51\" step=\"1\" condition=\"fullWidth==false\">\n\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\" condition=\"fullWidth==false\">\n <input type=\"checkbox\" title=\"Gradient\" name=\"gradientBg\" condition=\"fullWidth==false\">\n <input type=\"color\" title=\"Color 2\" name=\"color2\" value=\"#b2ccd2\" condition=\"gradientBg\">\n <!-- End block parameters -->\n </mbr-parameters>\n \n <figure class=\"mbr-figure align-center\" mbr-class=\"{'container':fullWidth==false}\">\n <div class=\"video-block\" mbr-style=\"{'width':videoSize+'%'}\">\n <div mbr-video>\n <iframe src=\"https://youtu.be/rcITodGRRCM?loop=0&autoplay=0\"></iframe>\n </div>\n </div>\n </figure>\n</section>",
"_cid": "tvtHdeWsM8",
"_anchor": "video1-1u",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-section-subtitle": {
"color": "#7f1933"
}
},
"_name": "content4",
"_customHTML": "<section class=\"mbr-section content4\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center pb-3 mbr-fonts-style\" mbr-theme-style=\"display-2\">\n Article Title with Solid Background\n </h2>\n <h3 mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-fonts-style\" mbr-theme-style=\"display-5\"><b>Video on How to Configure MartWeb And How to Earn using MartWeb</b></h3>\n <div class=\"mbr-section-btn align-center py-4\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrLink,-mbrBtnAdd,-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-black-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content4-21",
"_cid": "tyY1GdL6Rn",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"& when (@fullWidth = false)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"background": "@bgColor",
"& when (@gradientBg)": {
"background": "linear-gradient(45deg, @bgColor, @color2)"
},
".video-block": {
"margin": "auto",
"& when (@fullWidth)": {
"width": "100% !important"
}
},
"@media (max-width: 768px)": {
".video-block": {
"width": "100% !important"
}
}
},
"_name": "video1",
"_customHTML": "<section group=\"Images & Videos\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\">\n\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" value=\"2\" step=\"1\" condition=\"fullWidth==false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" value=\"0\" step=\"1\" condition=\"fullWidth==false\">\n <input type=\"range\" inline title=\"Width\" name=\"videoSize\" min=\"20\" max=\"100\" value=\"51\" step=\"1\" condition=\"fullWidth==false\">\n\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\" condition=\"fullWidth==false\">\n <input type=\"checkbox\" title=\"Gradient\" name=\"gradientBg\" condition=\"fullWidth==false\">\n <input type=\"color\" title=\"Color 2\" name=\"color2\" value=\"#b2ccd2\" condition=\"gradientBg\">\n <!-- End block parameters -->\n </mbr-parameters>\n \n <figure class=\"mbr-figure align-center\" mbr-class=\"{'container':fullWidth==false}\">\n <div class=\"video-block\" mbr-style=\"{'width':videoSize+'%'}\">\n <div mbr-video>\n <iframe src=\"https://youtu.be/2acP6FxgbO0?loop=0&autoplay=0\"></iframe>\n </div>\n </div>\n </figure>\n</section>",
"_anchor": "video1-1y",
"_cid": "tyXZMAg7RT",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-section-subtitle": {
"color": "#7f1933"
}
},
"_name": "content4",
"_customHTML": "<section class=\"mbr-section content4\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center pb-3 mbr-fonts-style\" mbr-theme-style=\"display-2\">\n Article Title with Solid Background\n </h2>\n <h3 mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-fonts-style\" mbr-theme-style=\"display-5\"><b>\n Configuration Circle of MartWeb</b>.\n </h3>\n <div class=\"mbr-section-btn align-center py-4\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrLink,-mbrBtnAdd,-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-black-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tyY0OIwGVr",
"_anchor": "content4-20",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"h4": {
"font-weight": "500",
"margin-bottom": "0",
"text-align": "left"
},
"p": {
"color": "#767676",
"text-align": "left"
},
".card-box": {
"padding-top": "2rem"
}
},
"_name": "features2",
"_customHTML": "<section class=\"features2\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"0\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"1\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\" selected>1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\">4</option>\n </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background2.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#f9f9f9\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" checked condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#efefef\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.8\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n \n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"card p-3 col-12 col-md-6\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <img src=\"@PROJECT_PATH@/assets/images/martweb-configuration-3214x2249.jpg\" alt=\"Mobirise\" title>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title\">\n <br><br>Configure, Add Link to MartWeb and start earning.</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\">The above picture/ video shows how to configure all the MartWeb to run automatically. Setup the MartWeb and start earning. <br>Get any profitable link. By profitable like, we mean link from platform that reward the public. Among many are Google blog, Facebook page, Tiktok, YouTube, Operamini News, e.t.c.<br>Add the link into MartWeb and MartWeb will process the link for you to start earning.MartWeb uses its procesing power and fasting the online earning. MartWeb make sure that you achieve the demanded requirements in the platform and generate revenue in your profitable account that connect to your link. The simplest platform is Google blog. Once link is configured into MartWeb, MartWeb do that work automatically.<br>But you need <b>access key</b> to use MartWeb.<br>All PhoneCash3x users are already valid users of MartWeb. Because MartWeb is the processing power of PhoneCash3x<br><br><b>Very Important Message:</b> <br>Please don't use same Gmail account for both YouTube and Google blog. <br><b>Reason is because:</b><br> YouTube is very sensitive to traffic.<br>YouTube can froze your subscription counter if traffic is too high. And unfroze it later when they are done with investigation.<br>But Google blog remains cool. So if your account is temporary frozen by YouTube, it will not affect your blog earning<br></p>\n </div>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 1\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <img src=\"../_images/img/02.jpg\" alt=\"Mobirise\">\n </div>\n <div class=\"card-box \">\n <h4 class=\"card-title pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title\">\n Mobile Friendly\n </h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\">\n All sites you make with Mobirise are mobile-friendly. You don't have to create a special mobile version of your site. <a href=\"http://mobirise.com\">Learn more...</a>\n </p>\n </div>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 2\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <img src=\"../_images/img/03.jpg\" alt=\"Mobirise\">\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title\">\n Unique Styles\n </h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\">\n Mobirise offers many site blocks in several themes, and though these blocks are pre-made, they are flexible. <a href=\"http://mobirise.com\">Learn more...</a>\n </p>\n </div>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 3\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-wrapper\">\n <div class=\"card-img\">\n <img src=\"../_images/img/01.jpg\" alt=\"Mobirise\">\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitle\" data-app-selector=\".card-title\">\n Unlimited Sites\n </h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\">\n Mobirise gives you the freedom to develop as many websites as you like given the fact that it is a desktop app. <a href=\"http://mobirise.com\">Learn more...</a>\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "tyY0q3211c",
"_anchor": "features2-1z",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-section-subtitle": {
"color": "#7f1933"
},
".mbr-section-subtitle B": {
"color": "#787324"
}
},
"_name": "content4",
"_customHTML": "<section class=\"mbr-section content4\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center pb-3 mbr-fonts-style\" mbr-theme-style=\"display-2\">\n Article Title with Solid Background\n </h2>\n <h3 mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-fonts-style\" mbr-theme-style=\"display-5\"><b>\n Download MartWeb(s)</b>.\n </h3>\n <div class=\"mbr-section-btn align-center py-4\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrLink,-mbrBtnAdd,-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-black-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content4-22",
"_cid": "tyYlvZ3k1w",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-text, blockquote": {
"color": "#767676"
},
".mbr-text DIV": {
"text-align": "center",
"color": "#000000"
}
},
"_name": "content1",
"_customHTML": "<section class=\"mbr-section article content1\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"1\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"4\">\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n <!-- End block parameters -->\n </mbr-parameters> \n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"mbr-text col-12 col-md-8 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" data-multiline mbr-article><b> Each MartWeb have dedicated memory for user account, which helps to remove memory corruption of users multiple account and express use of different online account. \n</b><div><b>Bellow are MartWeb 1 - 10.\n</b></div><div><b><br></b></div><div><i>Note, you can not create account directly using MartWeb (1-10), Use <a href=\"GOredirect.html\">GOredirect </a>to create account for MartWeb. After creating account in GOredirect, you can easily signin into MartWeb. Click <a href=\"GOredirect.html\">here </a>to visite GOredirect..\n </i></div></div>\n </div>\n </div>\n</section>",
"_cid": "tvtIcmMJ8Q",
"_anchor": "content1-1v",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".card-img": {
"& a": {
"display": "block",
"padding-top": "2rem"
}
},
".card-box": {
"padding": "0 2rem"
},
".mbr-section-btn": {
"padding-top": "1rem",
"a": {
"margin-top": "1rem",
"margin-bottom": "0"
}
},
"h4": {
"font-weight": "500",
"margin-bottom": "0",
"text-align": "left",
"padding-top": "2rem"
},
"p": {
"margin-bottom": "0",
"text-align": "left",
"padding-top": "1.5rem",
"& when not (@showTitle)": {
"padding-top": "2rem"
}
},
".mbr-text": {
"color": "#767676"
},
".card-wrapper": {
"padding-bottom": "2rem",
"& when not (@showTitle)": {
"& when not (@showText)": {
"& when not (@showButtons)": {
"padding-bottom": "0"
}
}
},
"background": "#ffffff",
"box-shadow": "0px 0px 0px 0px rgba(0, 0, 0, 0)",
"transition": "box-shadow 0.3s",
"&:hover": {
"box-shadow": "0px 0px 30px 0px rgba(0, 0, 0, 0.05)",
"transition": "box-shadow 0.3s"
}
}