-
Notifications
You must be signed in to change notification settings - Fork 8
/
Nemesis.xml
5193 lines (5167 loc) · 265 KB
/
Nemesis.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateVersion='1.0.4' expr:class='data:blog.languageDirection' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1' name='viewport'/>
<title><data:view.title.escaped/></title>
<b:include data='blog' name='all-head-content'/>
<link href='https://fonts.googleapis.com/css?family=Nunito:400,700' rel='stylesheet'/>
<link href='https://use.fontawesome.com/releases/v5.10.1/css/all.css' rel='stylesheet'/>
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css' rel='stylesheet'/>
<link href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css' rel='stylesheet'/>
<link href='https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css' rel='stylesheet'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js' sync='async'/>
<b:skin version='1.0.4'><![CDATA[
/*
<Variable name="keycolor" description="Main Color" type="color" hideEditor="true" default="#47c3fb" value="#47c3fb"/>
<Variable name="startSide" description="Start side in blog language" type="automatic" default="left" hideEditor="true" />
<Variable name="endSide" description="End side in blog language" type="automatic" default="right" hideEditor="true" />
<!-- Variable definitions -->
<Group description="Body" selector="body">
<Variable name="body.background.color" description="Body background color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="body.background" description="Background" type="background" color="$(body.background.color)" default="$(color) none repeat scroll top left" value="$(color) none no-repeat scroll center center"/>
<Variable name="page.wrapper.bg.color" description="Page Wrapper Background" type="color" default="#ffffff" value="transparent"/>
<Variable name="main.color" description="Theme Color" type="color" default="#47c3fb" value="#47c3fb"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#333333" value="#333333"/>
<Variable name="body.link.color" description="Link Color" type="color" default="#007bff" value="#007bff"/>
</Group>
<Group description="Bootstrap Color Root">
<Variable name="primary.color" description="Primary" type="color" default="#007bff" value="#007bff"/>
<Variable name="secondary.color" description="Secondary" type="color" default="#6c757d" value="#6c757d"/>
<Variable name="success.color" description="Success" type="color" default="#28a745" value="#9adca1"/>
<Variable name="info.color" description="Info" type="color" default="#17a2b8" value="#17a2b8"/>
<Variable name="warning.color" description="Warning" type="color" default="#ffc107" value="#ffc107"/>
<Variable name="danger.color" description="Danger" type="color" default="#dc3545" value="#dc3545"/>
<Variable name="light.color" description="Light" type="color" default="#f8f9fa" value="#f1f4f9"/>
<Variable name="dark.color" description="Dark" type="color" default="#343a40" value="#343a40"/>
<Variable name="white.color" description="White" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Header" selector="header">
<Variable name="header.bg.color" description="Navbar Background" type="color" default="#fff" value="#ffffff"/>
<Variable name="shadow.width" description="Shadow Width" type="length" min="0px" max="100px" default="20px" value="0px"/>
<Variable name="logo.width" description="Logo width" type="length" min="100px" max="300px" default="170px" value="200px"/>
<Variable name="site.title.color" description="Site Title Color" type="color" default="#111111" value="#111111"/>
<Variable name="header.H1.font" description="Site Font" type="font" default="normal 40px Nunito, sans-serif" value="700 34px Nunito"/>
<Variable name="header.margin" description="Header Margin Bottom" type="length" min="0px" max="100px" default="40px" value="40px"/>
</Group>
<Group description="Main Menu">
<Variable name="menu.font" description="Menu Font" type="font" default="700 13px Nunito, sans-serif" value="400 13px Roboto"/>
<Variable name="menu.height" description="Menu Height - Addition the Extra Padding, TOP + BOTTOM" type="length" min="50px" max="100px" default="64px" value="75px"/>
<Variable name="menu.padding.top" description="Menu Padding Top" type="length" min="0px" max="100px" default="24px" value="30px"/>
<Variable name="menu.padding.bottom" description="Menu Padding Bottom" type="length" min="0px" max="100px" default="24px" value="30px"/>
<Variable name="main.menu.color" description="Main Menu Color" type="color" default="#333333" value="#333333"/>
<Variable name="dropdown.menu.bg" description="Dropdown Menu Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="dropdown.menu.border.color" description="Dropdown Menu Border Color" type="color" default="#47c3fb" value="#47c3fb"/>
<Variable name="dropdown.menu.border.height" description="Border Top Height" type="length" min="0px" max="10px" default="3px" value="3px"/>
<Variable name="dropdown.menu.color" description="Dropdown Menu Color" type="color" default="#333333" value="#333333"/>
<Variable name="dropdown.hover.link.color" description="Dropdown Hover Link Color" type="color" default="#000000" value="#000000"/>
<Variable name="dropdown.hover.link.bg.color" description="Dropdown Hover Link BG" type="color" default="rgba(0,0,0,0.05)" value="rgba(0,0,0,0.05)"/>
<Variable name="search.icon.size" description="Search/Sidebar Icon Size" type="length" min="5px" max="50px" default="20px" value="22px"/>
<Variable name="icon.menu.size" description="Icon Menu size" type="length" min="0px" max="15px" default="4px" value="5px"/>
</Group>
<Group description="Scrolling Header / Menu">
<Variable name="scrolling.nav.bg.color" description="Scrolling Nav Background" type="color" default="#fff" value="#ffffff"/>
<Variable name="scrolling.menu.color" description="Scrolling Menu Color" type="color" default="#333333" value="#333333"/>
<Variable name="scrolling.shadow.width" description="Scrolling Shadow Width" type="length" min="0px" max="100px" default="20px" value="20px"/>
<Variable name="scrolling.site.title.color" description="Scrolling Site Title Color" type="color" default="#111111" value="#111111"/>
</Group>
<Group description="Container Widths">
<Variable name="container.width" description="Container width" type="length" min="900px" max="1900px" default="1170px" value="1200px"/>
<Variable name="page.wrapper.width" description="Page Wrapper width" type="length" min="960px" max="2500px" default="2500px" value="2500px"/>
</Group>
<Group description="Layout Settings">
<Variable name="page.wrapper.shadow" description="Page Wrapper Shadow" type="length" min="0px" max="30px" default="0px" value="0px"/>
<Variable name="container.margin.top" description="Page Margin Top" type="length" min="0px" max="50px" default="0px" value="25px"/>
<Variable name="container.margin.bottom" description="Page Margin Bottom" type="length" min="0px" max="50px" default="40px" value="0px"/>
<Variable name="block.radius" description="Block Border Radius" type="length" min="0px" max="100px" default="15px" value="15px"/>
</Group>
<Group description="Typography">
<Variable name="title.color" description="Title Color" type="color" default="#111111" value="#393939"/>
<Variable name="H1.font" description="H1" type="font" default="normal 40px Nunito, sans-serif" value="700 28px Nunito"/>
<Variable name="H1.line.height" description="H1 Line Height" type="length" min="10px" max="100px" default="39px" value="32px"/>
<Variable name="H2.font" description="H2" type="font" default="normal 27px Nunito, sans-serif" value="700 25px Nunito"/>
<Variable name="H2.line.height" description="H2 Line Height" type="length" min="10px" max="100px" default="32px" value="32px"/>
<Variable name="H3.font" description="H3" type="font" default="normal 22px Nunito, sans-serif" value="700 20px Nunito"/>
<Variable name="H3.line.height" description="H3 Line Height" type="length" min="10px" max="100px" default="27px" value="27px"/>
<Variable name="H4.font" description="H4" type="font" default="normal 20px Nunito, sans-serif" value="700 20px Nunito"/>
<Variable name="H4.line.height" description="H4 Line Height" type="length" min="10px" max="100px" default="22px" value="24px"/>
<Variable name="H5.font" description="H5" type="font" default="normal 18px Nunito, sans-serif" value="700 18px Nunito"/>
<Variable name="H5.line.height" description="H5 Line Height" type="length" min="10px" max="100px" default="20px" value="20px"/>
<Variable name="H6.font" description="H6" type="font" default="normal 14px Nunito, sans-serif" value="700 14px Nunito"/>
<Variable name="H6.line.height" description="H6 Line Height" type="length" min="10px" max="100px" default="18px" value="17px"/>
</Group>
<Group description="Post Settings">
<Variable name="index.text.font" description="Index Text Font" type="font" default="400 14px Nunito, sans-serif" value="400 14px Nunito, sans-serif"/>
<Variable name="item.text.font" description="Item Text Font" type="font" default="400 16px Nunito, sans-serif" value="400 17px Nunito, sans-serif"/>
<Variable name="item.text.line.height" description="Item Text Line Height" type="length" min="20px" max="50px" default="30px" value="34px"/>
<Variable name="post.text.color" description="Post Text Color" type="color" default="#111111" value="#222222"/>
<Variable name="meta.text.font" description="Meta Text Font" type="font" default="400 13px Nunito, sans-serif" value="400 12px Nunito, sans-serif"/>
<Variable name="thumbnail.height" description="Thumbnail Height" type="length" min="100px" max="500px" default="230px" value="250px"/>
<Variable name="post.shadow" description="Post Shadow 1" type="length" min="0px" max="65px" default="45px" value="15px"/>
<Variable name="post.shadow.2" description="Post Shadow 2" type="length" min="0px" max="65px" default="45px" value="15px"/>
<Variable name="post.shadow.1" description="Post Shadow 3" type="length" min="-30px" max="0px" default="-29px" value="-10px"/>
<Variable name="column.gap.hor" description="Column Gap Horizontal" type="length" min="0px" max="100px" default="30px" value="35px"/>
</Group>
<Group description="Aligment Grids">
<Variable name="aligment.thumbnail.height.2" description="Grid 2" type="length" min="100px" max="500px" default="$(thumbnail.height)" value="250px"/>
<Variable name="aligment.thumbnail.height.4" description="Grid 4" type="length" min="100px" max="500px" default="$(thumbnail.height)" value="250px"/>
<Variable name="aligment.thumbnail.height" description="Grid 6" type="length" min="100px" max="500px" default="$(thumbnail.height)" value="434px"/>
<Variable name="aligment.thumbnail.height.8" description="Grid 8" type="length" min="100px" max="500px" default="$(thumbnail.height)" value="250px"/>
<Variable name="aligment.thumbnail.height.10" description="Grid 10" type="length" min="100px" max="500px" default="$(thumbnail.height)" value="250px"/>
<Variable name="aligment.thumbnail.height.12" description="Grid 12" type="length" min="100px" max="500px" default="$(thumbnail.height)" value="250px"/>
<Variable name="aligment.thumbnail.height.14" description="Grid 14" type="length" min="100px" max="500px" default="$(thumbnail.height)" value="250px"/>
</Group>
<Group description="Grids Color">
<Variable name="index.post.color" description="Grid Text Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="index.post.bg.color" description="Main Grid Background" type="color" default="#4a42ec" value="#4a42ec"/>
<Variable name="index.post.bg.color.3" description="Grid 3 Background" type="color" default="$(index.post.bg.color)" value="#ff4274"/>
<Variable name="index.post.bg.color.5" description="Grid 5 Background" type="color" default="$(index.post.bg.color)" value="#0099cc"/>
<Variable name="index.post.bg.color.7" description="Grid 7 Background" type="color" default="$(index.post.bg.color)" value="#b5afeb"/>
<Variable name="index.post.bg.color.11" description="Grid 11 Background" type="color" default="$(index.post.bg.color)" value="#ff9900"/>
<Variable name="index.post.bg.color.15" description="Grid 15 Background" type="color" default="$(index.post.bg.color)" value="#939ead"/>
</Group>
<Group description="Top Slider">
<Variable name="slider.bg.color" description="Slider Background" type="color" default="transparent" value="transparent"/>
<Variable name="slider.width" description="Slider Negative Margin" type="length" min="-100px" max="-15px" default="-80px" value="-80px"/>
<Variable name="slider.padding.top" description="Padding Top" type="length" min="0px" max="200px" default="48px" value="48px"/>
<Variable name="slider.padding.bottom" description="Padding Bottom" type="length" min="0px" max="200px" default="48px" value="48px"/>
<Variable name="slider.margin.top" description="Margin Top" type="length" min="-100px" max="200px" default="0px" value="0px"/>
<Variable name="slider.margin.bottom" description="Margin Bottom" type="length" min="-200px" max="200px" default="48px" value="48px"/>
<Variable name="title.font.size" description="Title Font Size" type="length" min="20px" max="100px" default="60px" value="59px"/>
<Variable name="sl.image.height" description="Featured Post Image Height" type="length" min="200px" max="700px" default="480px" value="480px"/>
<Variable name="pp.thumbnail.height" description="Popular Posts Image Height" type="length" min="50px" max="650px" default="530px" value="530px"/>
<Variable name="page.thumbnail.height" description="Static Page Image Height" type="length" min="50px" max="650px" default="530px" value="530px"/>
<Variable name="img.shadow1" description="Image Shadow 1" type="length" min="0px" max="12px" default="12px" value="12px"/>
<Variable name="img.shadow2" description="Image Shadow 2" type="length" min="0px" max="60px" default="58px" value="58px"/>
<Variable name="sl.text.color" description="Text Color" type="color" default="#333333" value="#333333"/>
<Variable name="sl.hover.color" description="Title Hover Color" type="color" default="#000000" value="#000000"/>
<Variable name="btn.text.color" description="Button Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="btn.hover.color" description="Button Hover Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="btn.bg.color" description="Button BG Color" type="color" default="#4a42ec" value="#4a42ec"/>
<Variable name="btn.hover.bg.color" description="Button Hover BG Color" type="color" default="#007bff" value="#007bff"/>
</Group>
<Group description="Pseudo Circles">
<Variable name="circle.left.bg.color" description="Circle Left Background" type="color" default="#ffad00" value="#ffad00"/>
<Variable name="cl.width" description="Circle Left Width" type="length" min="0px" max="400px" default="350px" value="350px"/>
<Variable name="circle.center.bg.color" description="Circle Center Background" type="color" default="rgba(0,201,255,.25)" value="rgba(0,201,255,.25)"/>
<Variable name="cc.width" description="Circle Center Width" type="length" min="0px" max="600px" default="600px" value="600px"/>
<Variable name="circle.right.bg.color" description="Circle Right Background" type="color" default="#ff4ac2" value="#ff4ac2"/>
<Variable name="cr.width" description="Circle Right Width" type="length" min="0px" max="350px" default="150px" value="150px"/>
</Group>
<Group description="Widget Settings">
<Variable name="widget.margin" description="Widget Margin" type="length" min="30px" max="60px" default="40px" value="30px"/>
<Variable name="widget.title.height.left" description="Widget Title Height Left" type="length" min="0px" max="50px" default="33px" value="30px"/>
<Variable name="widget.title.height" description="Widget Title Height Right" type="length" min="0px" max="50px" default="33px" value="30px"/>
<Variable name="widget.title.line.height" description="Widget Title Line Height" type="length" min="0px" max="50px" default="33px" value="27px"/>
<Variable name="left.side" description="Widget Bg Color Left" type="color" default="rgba(0, 0, 0, 0)" value="rgba(0, 0, 0, 0)"/>
<Variable name="left.side.triangle" description="Widget Triangle Bg Color" type="color" default="rgba(0, 0, 0, 0)" value="rgba(0, 0, 0, 0)"/>
<Variable name="right.side" description="Widget Bg Color Right" type="color" default="#000000" value="rgba(0, 0, 0, 0)"/>
<Variable name="gradient.color" description="Widget Gradient Bg Color Right" type="color" default="$(content.bg.color)" value="rgba(0, 0, 0, 0)"/>
<Variable name="widget.title.color" description="Widget Title Color" type="color" default="rgba(0,0,0,0.4)" value="#111111"/>
<Variable name="widget.title.font" description="Widget Title Font" type="font" default="normal 13px Nunito, sans-serif" value="700 17px Nunito"/>
<Variable name="widget.title.padding.left" description="Widget Title Padding Left" type="length" min="0px" max="17px" default="17px" value="0px"/>
<Variable name="widget.title.padding.right" description="Widget Title Padding Right" type="length" min="0px" max="17px" default="17px" value="0px"/>
<Variable name="widget.title.margin.bottom" description="Widget Title Margin Bottom" type="length" min="0px" max="30px" default="20px" value="15px"/>
<Variable name="widget.left.border.height" description="Widget Border Bottom Left" type="length" min="0px" max="6px" default="3px" value="1px"/>
<Variable name="widget.left.border.height.top" description="Widget Border Top Left" type="length" min="0px" max="6px" default="3px" value="0px"/>
<Variable name="widget.border.height" description="Widget Border Bottom Right" type="length" min="0px" max="6px" default="3px" value="1px"/>
<Variable name="widget.border.height.top" description="Widget Border Top Right" type="length" min="0px" max="6px" default="3px" value="0px"/>
<Variable name="left.side.border.color" description="Border Color Left" type="color" default="rgba(0, 0, 0, 0)" value="#4a42ec"/>
<Variable name="right.side.border.color" description="Border Color Right" type="color" default="#000000" value="#eeeeee"/>
</Group>
<Group description="Sidebar">
<Variable name="sidebar.bg.color" description="Sidebar Background" type="color" default="#fff" value="#ffffff"/>
<Variable name="sidebar.width" description="Sidebar Width" type="length" min="0px" max="600px" default="320px" value="320px"/>
<Variable name="sidebar.padding" description="Sidebar Padding" type="length" min="10px" max="80px" default="20px" value="20px"/>
<Variable name="sidebar.text.color" description="Sidebar Text Color" type="color" default="#333" value="#333333"/>
</Group>
<Group description="Footer">
<Variable name="footer.bg.color" description="Footer Background" type="color" default="#4a42ec" value="#4a42ec"/>
<Variable name="footer.padding.top" description="Footer Padding Top" type="length" min="0px" max="150px" default="25px" value="25px"/>
<Variable name="footer.padding.bottom" description="Footer Padding Bottom" type="length" min="0px" max="150px" default="25px" value="25px"/>
<Variable name="footer.margin.top" description="Footer margin Top" type="length" min="0px" max="150px" default="0px" value="0px"/>
<Variable name="footer.widget.title.color" description="Footer Widget Title Color" type="color" default="#fff" value="#ffffff"/>
<Variable name="footer.text.color" description="Footer Text Color" type="color" default="#fff" value="#ffffff"/>
<Variable name="footer.hover.text.color" description="Footer Hover Text Color" type="color" default="#fff" value="rgba(255, 255, 255, 0.85)"/>
<Variable name="credits.divider.color" description="Divider Color" type="color" default="#fff" value="#ffffff"/>
</Group>
<Group description="FBT Slider Settings">
<Variable name="slider.container.height" description="Slider Height from 100% - Xpx" type="length" min="0px" max="300px" default="100px" value="120px"/>
<Variable name="fbt.slider.title.font.size" description="Title Font Size" type="length" min="40px" max="100px" default="72px" value="72px"/>
<Variable name="svg.slider.bg.color" description="Slider SVG Background" type="color" default="#fff" value="#ffffff"/>
<Variable name="slider.svg.height" description="Slider SVG Height" type="length" min="0px" max="300px" default="150px" value="0px"/>
<Variable name="mobile.slider.svg.height" description="Mobile Slider SVG Height" type="length" min="0px" max="500px" default="100px" value="0px"/>
<Variable name="slider.indicator.position" description="Indicator Position" type="length" min="0px" max="150px" default="40px" value="40px"/>
</Group>
<Group description="Footer SVG Shape">
<Variable name="svg.section.bg.color" description="SVG Section Background" type="color" default="#fff" value="#ffffff"/>
<Variable name="footer.svg.height" description="Footer SVG Height" type="length" min="0px" max="900px" default="300px" value="300px"/>
<Variable name="mobile.footer.svg.height" description="Mobile Footer SVG Height" type="length" min="0px" max="500px" default="150px" value="150px"/>
</Group>
<Group description="Follow by Email Bottom">
<Variable name="fbe.margin.top" description="Margin Top" type="length" min="0px" max="150px" default="80px" value="80px"/>
<Variable name="fbe.margin.bottom" description="Margin Bottom" type="length" min="-300px" max="100px" default="-150px" value="-150px"/>
<Variable name="fbe.bg.color" description="Background Color" type="color" default="#fff" value="#ffffff"/>
<Variable name="fbe.wt.color" description="Title Color" type="color" default="#393939" value="#393939"/>
<Variable name="fbe.form.input.color" description="Form Input Color" type="color" default="#393939" value="#393939"/>
<Variable name="fbe.button.bg" description="Button Background" type="color" default="#4a42ec" value="#4a42ec"/>
<Variable name="fbe.button.hover.bg" description="Button Hover Background" type="color" default="#007bff" value="#007bff"/>
<Variable name="fbe.button.color" description="Button Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="fbe.shadow.1" description="Shadow 1" type="length" min="0px" max="10px" default="10px" value="0px"/>
<Variable name="fbe.shadow.2" description="Shadow 2" type="length" min="0px" max="22px" default="22px" value="0px"/>
<Variable name="fbe.small.circle.bg" description="Small Circle Background" type="color" default="#97CE4E" value="#97CE4E"/>
<Variable name="fbe.large.circle.bg" description="Large Circle Background" type="color" default="#f1f4f9" value="#f1f4f9"/>
<Variable name="fbe.form.radius" description="Form Border Radius" type="length" min="0px" max="150px" default="45px" value="45px"/>
<Variable name="fbe.button.radius" description="Button Border Radius" type="length" min="0px" max="100px" default="25px" value="25px"/>
</Group>
<Group description="Main Search Form">
<Variable name="search.form.bg.color" description="Search Form Background" type="color" default="rgba(0, 0, 0, 0.9)" value="rgba(0, 0, 0, 0.9)"/>
<Variable name="search.form.border.color" description="Search Form Border Color" type="color" default="rgba(255, 255, 255, 0.5)" value="rgba(255, 255, 255, 0.5)"/>
<Variable name="search.form.color" description="Search Form Color" type="color" default="#fff" value="#ffffff"/>
</Group>
<Group description="Popular Posts Secondary">
<Variable name="bottom.pop.posts.margin.top" description="Bottom Popular Posts Margin Top" type="length" min="0px" max="200px" default="0px" value="0px"/>
<Variable name="bottom.pop.posts.margin.bottom" description="Bottom Popular Posts Margin Bottom" type="length" min="-200px" max="200px" default="0px" value="0px"/>
<Variable name="sec.pp.title.font" description="Widget Titlte Font" type="font" default="900 36px Montserrat, sans-serif" value="900 36px Montserrat, sans-serif"/>
<Variable name="sec.pp.sec.title.font" description="Widget Secondary Titlte Font" type="font" default="400 36px Oswald, sans-serif" value="400 36px Oswald, sans-serif"/>
<Variable name="sec.pp.title.color" description="Widget Titlte Color" type="color" default="rgba(37,37,37,.06)" value="rgba(37,37,37,.06)"/>
<Variable name="sec.pp.thumbnail.height" description="Thumbnail Height" type="length" min="150px" max="500px" default="260px" value="260px"/>
<Variable name="sec.pp.xl.screen.title" description="XL Screen Font Size min1440px" type="length" min="50px" max="150px" default="130px" value="130px"/>
<Variable name="sec.pp.lg.screen.title" description="LG Screen Font Size min1200px" type="length" min="50px" max="150px" default="120px" value="120px"/>
<Variable name="sec.pp.md.screen.title" description="MD Screen Font Size min992px" type="length" min="50px" max="150px" default="95px" value="95px"/>
<Variable name="sec.pp.sm.screen.title" description="SM Screen Font Size min768px" type="length" min="50px" max="150px" default="80px" value="80px"/>
<Variable name="sec.pp.xs.screen.title" description="XS Screen Font Size min576px" type="length" min="50px" max="150px" default="65px" value="65px"/>
</Group>
<!-- Extra Variables -->
<Variable name="body.text.font" description="Font" hideEditor="true" type="font" default="14px Nunito, sans-serif" value="14px Nunito, sans-serif"/>
<Variable name="body.text.font.size" description="Font Size" type="length" hideEditor="true" min="12px" max="60px" default="14px" value="14px"/>
<Variable name="posts.background.color" description="Post background color" hideEditor="true" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="tabs.font" description="Font 2" hideEditor="true" type="font" default="14px Nunito, sans-serif" value="14px Nunito, sans-serif"/>
<Variable name="posts.title.color" description="Post title color" hideEditor="true" type="color" default="#111111" value="#111111"/>
<Variable name="posts.text.color" description="Post text color" hideEditor="true" type="color" default="#656565" value="#656565"/>
<Variable name="posts.icons.color" description="Post icons color" hideEditor="true" type="color" default="$(main.color)" value="#ffd012"/>
<Variable name="labels.background.color" description="Label background color" hideEditor="true" type="color" default="$(main.color)" value="#ffd012"/>
*/
:root {
--primary: $(primary.color);
--secondary: $(secondary.color);
--success: $(success.color);
--info: $(info.color);
--warning: $(warning.color);
--danger: $(danger.color);
--light: $(light.color);
--dark: $(dark.color);
--white: $(white.color);
--bigthumbnail: $(aligment.thumbnail.height);
}
.badge-primary,
.bg-primary {
background-color: var(--primary) !important;
}
.badge-secondary,
.bg-secondary {
background-color: var(--secondary) !important;
}
.badge-success,
.bg-success {
background-color: var(--success) !important;
}
.badge-info,
.bg-info {
background-color: var(--info) !important;
}
.badge-warning,
.bg-warning {
background-color: var(--warning) !important;
}
.badge-danger,
.bg-danger {
background-color: var(--danger) !important;
}
.badge-light,
.bg-light {
background-color: var(--light) !important;
}
.badge-dark,
.bg-dark {
background-color: var(--dark) !important;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.btn-primary,
.btn-primary:hover {
background-color: var(--primary);
border-color: var(--primary);
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary,
.btn-secondary:hover {
background-color: var(--secondary);
border-color: var(--secondary);
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.btn-success,
.btn-success:hover {
background-color: var(--success);
border-color: var(--success);
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.btn-info,
.btn-info:hover {
background-color: var(--info);
border-color: var(--info);
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.btn-warning,
.btn-warning:hover {
background-color: var(--warning);
border-color: var(--warning);
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.btn-danger,
.btn-danger:hover {
background-color: var(--danger);
border-color: var(--danger);
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.btn-light,
.btn-light:hover {
background-color: var(--light);
border-color: var(--light);
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.btn-dark,
.btn-dark:hover {
background-color: var(--dark);
border-color: var(--dark);
}
/* General
===================================== */
.hidden {display: none;}
.container .container {padding: 0;}
button:focus,
button:active:focus,
button.active {
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
}
a.badge:focus {
outline: 0;
box-shadow: none;
}
.radius-0 {
border-radius: 0;
}
.radius-10 {
border-radius: $(block.radius)!important;
overflow: hidden!important;
}
.radius-25 {
border-radius: 25px!important;
overflow: hidden!important;
}
.o-visible {
overflow: visible!important;
}
.list-unstyled li a {
padding: .25rem 0;
display: block;
}
.fbt-resize {
width: 100%;
max-width: 100%;
height: 100%;
max-height: 100%;
position: relative;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
:focus {outline: 0;}
.divider {position: relative;}
.divider:before {
position: absolute;
top: 0;
left: 50%;
display: block;
width: 80%;
height: 2px;
margin-left: -40%;
content: '';
background: radial-gradient(ellipse at center, $(credits.divider.color) 0, rgba(255, 255, 255, 0) 75%);opacity: .6;
}
#page-wrapper {
background: $(page.wrapper.bg.color);
max-width: $(page.wrapper.width);
margin-top: $(container.margin.top);
margin-bottom: $(container.margin.bottom);
margin-left: auto;
margin-right: auto;
box-shadow: 0 0 $(page.wrapper.shadow) rgba(23,16,159,.15);
position: relative;
}
@media (max-width: 1365.98px) {
.text-responsive {
font-size: calc(150% + 1vw + 1vh)!important;
}
}
.btn:hover {
opacity: .9;
}
blockquote {
font-style: italic;
font-weight: normal;
font-family: Georgia, Serif;
font-size: 17px;
line-height: 1.6em;
margin: 10px 0;
}
blockquote .card {
background-color: var(--dark);
}
blockquote p {
position: relative;
font-family: Georgia;
color: var(--white);
}
blockquote p:before {
content: '\201C';
color: var(--white);
font-size: 10em;
font-weight: 700;
opacity: .3;
position: absolute;
top: 20px;
left: -55px;
}
blockquote.fbt-shape-container:before {
display: none;
}
blockquote.fbt-shape-container:after {
width: $(cl.width);
height: $(cl.width);
border-radius: 2000px;
background: linear-gradient(45deg,rgba(0,201,255,0) 45%,$(circle.center.bg.color) 100%);
right: -110px;
top: -110px;
}
.CSS_LAYOUT_COMPONENT.CSS_LIGHTBOX_ATTRIBUTION_INDEX_CONTAINER {
display: none;
}
#cookieChoiceInfo {
bottom:0;
top:auto;
background: $(dark.color);
}
.cookie-choices-info .cookie-choices-text {
font-size: 14px!important;
color: $(white.color)!important;
}
.cookie-choices-info .cookie-choices-button {
text-transform: capitalize!important;
}
/* Typography
===================================== */
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1, .h2, .h3, .h4, .h5, .h6 {color: $(title.color);margin: 0;}
h1, .h1 {font: $(H1.font);line-height: $(H1.line.height);letter-spacing: .3px;}
h2, .h2 {font: $(H2.font);line-height: $(H2.line.height);}
h3, .h3 {font: $(H3.font);line-height: $(H3.line.height);}
h4, .h4 {font: $(H4.font);line-height: $(H4.line.height);}
h5, .h5 {font: $(H5.font);line-height: $(H5.line.height);}
h6, .h6 {font: $(H6.font);line-height: $(H6.line.height);}
@media (min-width: 1441px) {
.container {
max-width: $(container.width);
}
.slider-width {
margin-left: $(slider.width);
margin-right: $(slider.width);
}
}
.card {
border: 0;
border-radius: 0;
-webkit-box-shadow: 0 $(post.shadow) $(post.shadow.2) $(post.shadow.1) rgba(23,16,159,.15);
box-shadow: 0 $(post.shadow) $(post.shadow.2) $(post.shadow.1) rgba(23,16,159,.15);
}
body {
background: $(body.background);
color: $(body.text.color);
font: $(body.text.font);
overflow-x: hidden;
}
a {
color: $(body.link.color);
}
a .fa,a .fab,a .fad,a .fal,a .far,a .fas {
font-size: calc($(body.text.font.size) + $(icon.menu.size));
}
a:hover {
color: $(main.color);
text-decoration: none;
}
p {line-height: 1.6em;}
/* Navbar Header
===================================== */
#LinkList1 {min-height: $(menu.height);}
#LinkList1 ul {list-style: none;}
#LinkList1 ul li {display: none;}
.navbar {
margin-bottom: $(header.margin);
}
.dropdown-toggle::after {
content: "\f078";
font-family: fontAwesome;
border: 0;
font-size: 7px;
margin-left: 3px;
font-weight: normal;
}
@media (min-width: 576px) {
.nav-mobile-px {
padding: 0 15px !important;
}
}
.dropdown .nav-link {
outline: 0;
}
.dropdown .dropdown-menu {
-webkit-box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
background: $(dropdown.menu.bg);
border-radius: 0;
overflow: hidden;
margin: 0 0 0;
padding: .4rem 0;
border: 0;
min-width: 12rem;
}
@media (max-width: 1199.98px) {
.dropdown .dropdown-menu {
padding: 0;
margin: 0;
background: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.dropdown .dropdown-menu .dropdown-item {
position: relative;
padding: .45rem 1rem;
font: $(menu.font);
color: $(dropdown.menu.color);
text-transform: uppercase;
letter-spacing: 0.2px;
}
.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item:focus {
background-color: $(dropdown.hover.link.bg.color)!important;
color: $(dropdown.hover.link.color);
}
.dropdown .dropdown-menu .dropdown-item:focus {
color: $(main.menu.color);
background: $(main.color);
}
@media (max-width: 1199.98px) {
.dropdown .dropdown-menu .dropdown-item {
text-transform: uppercase;
color: $(main.menu.color);
}
.dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:focus {
background: transparent;
color: $(main.menu.color);
opacity: .85;
}
}
.dropdown.fbt-megamenu {
position: static;
}
.dropdown.fbt-megamenu .fullwidth {
width: 100%;
margin: 0;
}
@media (min-width: 1200px) {
.dropdown:hover .dropdown-menu {
display: block;
}
.navbar {
padding-top: 0;
padding-bottom: 0;
}
}
.navbar .nav-link {
text-transform: uppercase;
font: $(menu.font);
letter-spacing: 0.2px;
}
@media (min-width: 1200px) {
.navbar .nav-link {
padding-top: $(menu.padding.top);
padding-bottom: $(menu.padding.bottom);
}
.navbar .dropdown-menu {
border-top: $(dropdown.menu.border.height) solid $(dropdown.menu.border.color);
-webkit-animation: dropdown .2s ease forwards;
animation: dropdown .2s ease forwards;
}
.navbar .dropdown-menu .nav-link {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
}
.navbar .navbar-brand {
font-size: .5rem;
}
@-webkit-keyframes dropdown {
0% {
opacity: 0;
-webkit-transform: translateY(1rem);
transform: translateY(1rem);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes dropdown {
0% {
opacity: 0;
-webkit-transform: translateY(1rem);
transform: translateY(1rem);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.header-buttons {
padding-left: 1rem;
}
@media (min-width: 1200px) {
.header-buttons {
min-width: $(logo.width);
text-align: right;
}
}
.fbt-sidenav,
.navbar-search {
font-size: $(search.icon.size);
cursor: pointer;
}
.fbt-sidenav svg {
height: calc($(search.icon.size) - 7px);
width: calc($(search.icon.size) - 7px);
margin-top: -4px;
}
.navbar-dark .fbt-sidenav,
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-search {
color: $(main.menu.color);
}
.navbar-dark .fbt-sidenav svg {
fill: $(main.menu.color);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
color: $(main.menu.color);
opacity: .85;
}
.fbt_sticky_nav.nav_offset {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.fbt_sticky_nav.sticky__nav {
position: fixed;
visibility: hidden;
opacity: 0;
top: 0;
left: 0;
right: 0;
z-index: 1030;
}
.fbt_sticky_nav.sticky__nav.scrolling_nav {
opacity: 1;
visibility: visible;
}
.fbt_sticky_nav.scrolling_nav {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
@media (min-width: 1200px) {
.fbt_sticky_nav.scrolling_nav .nav-item .nav-link {
padding-top: 1.25rem;
padding-bottom: 1.2rem;
}
}
.dark-skin {
background-color: $(header.bg.color);
-webkit-box-shadow: 0 0 $(shadow.width) rgba(103,151,255,.25);
box-shadow: 0 0 $(shadow.width) rgba(103,151,255,.25);
}
.Header h1 {font: $(header.H1.font);}
.Header h1 a {color: $(site.title.color);}
.Header h1 a:hover {color: $(main.color);}
.Header img {max-width: $(logo.width);}
#LinkList1 {
width: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-align: center;
align-items: center;
}
@media (min-width: 1200px) {
#LinkList1 {
display: -ms-flexbox!important;
display: flex!important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
}
.navbar-dark .navbar-toggler {
padding: 0.25rem 0;
font-size: 1.5rem;
line-height: 1;
background-color: transparent;
border: 0!important;
border-color: transparent!important;
border-radius: 0;
color: $(main.menu.color);
}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
color: $(main.menu.color);
}
.fbt_sticky_nav.sticky__nav.scrolling_nav {
background: $(scrolling.nav.bg.color);
-webkit-box-shadow: 0 0 $(scrolling.shadow.width) rgba(103,151,255,.25);
box-shadow: 0 0 $(scrolling.shadow.width) rgba(103,151,255,.25);
}
.navbar-dark.fbt_sticky_nav.sticky__nav.scrolling_nav .fbt-sidenav, .navbar-dark.fbt_sticky_nav.sticky__nav.scrolling_nav .navbar-nav .nav-link, .navbar-dark.fbt_sticky_nav.sticky__nav.scrolling_nav .navbar-search {
color: $(scrolling.menu.color);
}
.navbar-dark.fbt_sticky_nav.sticky__nav.scrolling_nav .fbt-sidenav svg {
fill: $(scrolling.menu.color);
}
.fbt_sticky_nav.sticky__nav.scrolling_nav .Header h1 a {
color: $(scrolling.site.title.color);
}
/* Posts
=====
================================ */
.widget.Blog,
.navbar-brand,
.header-buttons {
display: none;
}
.fbt-index-post {
margin-bottom: 30px;
}
.tooltip,
.feed-view .card-text,
.item-view .card-text,
.feed-view .blog-post {
font: $(index.text.font);
}
.item-view .post-body {
font: $(item.text.font)!important;
line-height: $(item.text.line.height)!important;
letter-spacing: .3px!important;
color: $(post.text.color)!important;
}
.post-meta {
font: $(meta.text.font);
}
.post-meta span:not(:last-child):after {
content: '/';
margin: 0 3px 0 7px;
}
.post-meta a, .post-meta .post-author {
color: $(post.text.color);
text-transform: uppercase;
}
.post-meta a:hover {
color: $(main.color);
}
.post-title {
margin-bottom: 12px;
}
.post-excerpt {
margin-top: 10px;
}
.fbt-post-thumbnail {
width: 100%;
height: $(thumbnail.height);
overflow: hidden;
position: relative;
}
.fbt-post-thumbnail .no-image {
height: 125px;
}
.blog-post:nth-child(2) .fbt-post-thumbnail {
height: $(aligment.thumbnail.height.2);
}
.blog-post:nth-child(4) .fbt-post-thumbnail {
height: $(aligment.thumbnail.height.4);
}
.blog-post:nth-child(6) .fbt-post-thumbnail {
height: $(aligment.thumbnail.height);
}
.blog-post:nth-child(8) .fbt-post-thumbnail {
height: $(aligment.thumbnail.height.8);
}
.blog-post:nth-child(10) .fbt-post-thumbnail {
height: $(aligment.thumbnail.height.10);
}
.blog-post:nth-child(12) .fbt-post-thumbnail {
height: $(aligment.thumbnail.height.12);
}
.blog-post:nth-child(14) .fbt-post-thumbnail {
height: $(aligment.thumbnail.height.14);
}
.item-view .fbt-post-thumbnail {
width: 100%;
height: auto;
}
.fbt-item-post .post-body img {
max-width: 100%;
}
.post-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
}
.blog-post:nth-child(2n+2) .card-body {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 1.25rem;
background-color: rgba(0, 0, 0, .2);
background-image: linear-gradient(-45deg, rgba(0, 0, 0, .2) 0%,rgba(0, 0, 0, .1) 110%);
pointer-events: none;
}
.fbt-index-post.card {
background-color: $(index.post.bg.color);
}
.fbt-index-post.card:nth-child(3) {
background-color: $(index.post.bg.color.3);
}
.fbt-index-post.card:nth-child(5) {
background-color: $(index.post.bg.color.5);
}
.fbt-index-post.card:nth-child(7) {
background-color: $(index.post.bg.color.7);
}
.fbt-index-post.card:nth-child(11) {
background-color: $(index.post.bg.color.11);
}
.fbt-index-post.card:nth-child(15) {
background-color: $(index.post.bg.color.15);
}
.fbt-index-post.card h3,
.fbt-index-post.card h3 a,
.fbt-index-post.card .post-meta,
.fbt-index-post.card .post-meta a,
.fbt-index-post.card .post-meta .post-author,
.fbt-index-post.card .card-text {
color: $(index.post.color)!important;
}
.blog-post:nth-child(2n+2):hover h3,
.blog-post:nth-child(2n+2):hover h3 a,
.fbt-index-post.card h3:hover,
.fbt-index-post.card h3 a:hover {
text-decoration: underline;
}
.blog-post:nth-child(2n+2) h3,
.blog-post:nth-child(2n+2) h3 a,
.blog-post:nth-child(2n+2) .post-meta,
.blog-post:nth-child(2n+2) .post-meta a,
.blog-post:nth-child(2n+2) .post-meta .post-author,
.blog-post:nth-child(2n+2) .card-text {
color: #fff!important;
}
@media (min-width: 576px) {
.card-columns {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
}
@media (min-width: 768px) {
.card-columns {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
}
}
@media (min-width: 992px) {
.card-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
}
}
.card-columns .fbt-index-post.card {
margin-bottom: calc($(column.gap.hor) - 5px);
}
@media (min-width: 576px) {
.card-columns {
-webkit-column-gap: $(column.gap.hor);
-moz-column-gap: $(column.gap.hor);
column-gap: $(column.gap.hor);
}
}
.query-error .search-label,
.query-success .search-label,
.query-error .search-query,
.query-success .search-query {
color: $(main.color);
}
.post-pager a:hover .fbt-np-title {
text-decoration: underline;
}
@media screen and (max-width: 575.98px){
body.item-view .post-body a[imageanchor="1"][style*="float: left;"],body.item-view .post-body a[imageanchor="1"][style*="float: right;"]{
float:none!important;
clear:none!important
}
body.item-view .post-body a[imageanchor="1"] img{
display:block;
height:auto;
margin:0 auto
}
body.item-view .post-body>.separator:first-child>a[imageanchor="1"]:first-child{
margin-top:20px
}
.post-body a[imageanchor]{
display:block
}
body.item-view .post-body a[imageanchor="1"]{
margin-left:0!important;
margin-right:0!important
}
body.item-view .post-body a[imageanchor="1"]+a[imageanchor="1"]{
margin-top:16px
}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.PopularPosts img {width: 100%;height: auto;top: 50%;left: 50%;position: relative;transform: translate(-50%, -50%);}
.fbt-item-post .slider-container img, .FeaturedPost img {height: auto;top: 50%;left: 50%;position: relative;transform: translate(-50%, -50%);}
.blog-posts .fbt-post-thumbnail img {height: 100%;width: auto;top: 50%;left: 50%;position: relative;transform: translate(-50%, -50%);}
.fbt-item-post .post-body img {border: 0;max-height: 100%;max-width: 100%;height: auto;width: 100%;position: relative;transition: all 0.3s;margin: 0 auto;float: none;display: block;vertical-align: middle;}
.blog-post:nth-child(6) .fbt-post-thumbnail,
.fbt-post-thumbnail {height: 220px!important;}
.blog-post:nth-child(2n+2) .card-body {position: relative;}
}
.video-icon {position: absolute;top: 15px;left: 15px;width: 42px;height: 42px;text-align: center;border-radius: 100%;transition: all .2s ease-in-out; color: #ffffff;border: 2px solid #fff;font-size: 18px;background: rgba(0,0,0,0.2);}
.video-icon i {text-align: center;margin-left: 3px;line-height: 38px}
/* Pagination
===================================== */
.blog-pager {
text-align: center;
margin: 30px 0 30px!important;
padding: 0;
font: $(index.text.font);
}
@media (max-width:575.98px) {
.blog-pager {
margin-top: calc(30px + calc($(column.gap.hor) - 5px))!important;
}
}
.blog-pager-older-link {
position: relative;
color: var(--dark);
}
.blog-pager-older-link .fa {
font-size: 20px;
}