-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboxed.xml
More file actions
5530 lines (5354 loc) · 235 KB
/
boxed.xml
File metadata and controls
5530 lines (5354 loc) · 235 KB
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:version='2' class='v2' 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='IE=edge' http-equiv='X-UA-Compatible'/>
<meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/>
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<link crossorigin='anonymous' href='https://fonts.googleapis.com' rel='preconnect'/>
<link crossorigin='anonymous' href='https://fonts.gstatic.com' rel='preconnect'/>
<link crossorigin='anonymous' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css' integrity='sha256-2XFplPlrFClt0bIdPgpz8H7ojnk10H69xRqd9+uTShA=' rel='stylesheet'/>
<b:skin><![CDATA[/*
-----------------------------------------------
Oliver Blogger Template
Name: Oliver
Designer: Salman Farooqui
URL: http://themeforest.net/user/TemplatesZoo
----------------------------------------------- */
/* ------------Variable Declarations-----------
-------------------------------------------------
<Variable name="sidebar.background" description="Sidebar Background Image" type="url" value="none"/>
<Variable name="error.page.text" description="404 Error Page Text" type="string" value="Sorry! the page you were looking for doesnt exist"/>
<Group description="Blog Title/Description" selector="#Header">
<Variable name="blogtitle.text.color" description="Blog Title Color" type="color" default="#2B2B2B" value="#2B2B2B"/>
<Variable name="blogtitle.text.font" description="Blog Title Font" type="font" default="normal bold 56px Lobster Two" value="normal bold 56px Lobster Two"/>
<Variable name="description.text.color" description="Description Text Color" type="color" default="#5E5E5E" value="#5E5E5E"/>
<Variable name="description.text.font" description="Description Text Font" type="font" default="normal normal 18px Khula" value="normal normal 18px Khula"/>
</Group>
<Group description="Mobile Header" selector=".mobheader">
<Variable name="mobheader.background.color" description="Mobile Header Background Color" type="color" default="#383838" value="#383838"/>
<Variable name="navicon.icon.color" description="Mobile Menu Icon Color" type="color" default="#f7f7f7" value="#f7f7f7"/>
<Variable name="mobheader.title.color" description="Mobile Blog Title Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="mobheader.title.font" description="Mobile Blog Title Font" type="font" default="$(blogtitle.text.font)" value="normal bold 56px Lobster Two"/>
<Variable name="mobheader.description.color" description="Mobile Blog Description Color" type="color" default="#efefef" value="#efefef"/>
<Variable name="mobheader.description.font" description="Mobile Blog Description Font" type="font" default="$(description.text.font)" value="normal normal 18px Khula"/>
<Variable name="menuclose.icon.color" description="Mobile Sidebar Close Icon Color" type="color" default="#444343" value="#444343"/>
</Group>
<Group description="Sidebar" selector="#sider">
<Variable name="sidebar.background.color" description="Sidebar Background Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="menu.text.color" description="Menu Color" type="color" default="#000000" value="#000000"/>
<Variable name="menu.text.font" description="Menu Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
<Variable name="menu.text.border" description="Menu Border Color" type="color" default="transparent" value="transparent"/>
<Variable name="menu.main.spacing" description="Menu Level 1 Spacing" type="length" default="11px" min="0" max="40px" value="11px"/>
<Variable name="menu.second.spacing" description="Menu Level 2 Spacing" type="length" default="11px" min="0" max="40px" value="11px"/>
<Variable name="menu.hover.color" description="Menu MouseOver Color" type="color" default="#1D1D1D" value="#1D1D1D"/>
<Variable name="menu.arrow.color" description="Menu Arrow Color" type="color" default="#616161" value="#616161"/>
<Variable name="menu.arrow.size" description="Menu Arrow Size" type="length" default="10px" min="0" max="40px" value="10px"/>
<Variable name="menu.arrow.adjust" description="Menu Arrow Height Adjustment" type="length" default="21px" min="0" max="60px" value="21px"/>
<Variable name="submenu.background.color" description="Sub Menu Background Color" type="color" default="#000000" value="#000000"/>
<Variable name="submenu.text.color" description="Sub Menu Text Color" type="color" default="#f7f7f7" value="#f7f7f7"/>
<Variable name="menu2.text.font" description="Sub Menu Font" type="font" default="normal normal 14px Khula" value="normal normal 14px Khula"/>
<Variable name="submenu.text.border" description="Sub Menu Border Color" type="color" default="#202020" value="#202020"/>
<Variable name="submenu.hover.background" description="Sub Menu MouseOver Background" type="color" default="#d1ddeb" value="#d1ddeb"/>
<Variable name="submenu.hover.color" description="Sub Menu MouseOver Color" type="color" default="#000000" value="#000000"/>
<Variable name="submenu.icon.color" description="Sub Menu Icon Color" type="color" default="#ebebeb" value="#ebebeb"/>
<Variable name="sidebar.title.color" description="Widget Title Color" type="color" default="#000000" value="#000000"/>
<Variable name="sidebar.title.font" description="Widget Title Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
<Variable name="sidebar.title.border" description="Widget Title Underline Color" type="color" default="#d9d9d9" value="#d9d9d9"/>
<Variable name="copyright.text.color" description="Copyright Color" type="color" default="#bfbfbf" value="#bfbfbf"/>
<Variable name="copyright.text.font" description="Copyright Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
</Group>
<Group description="Social Media Icons" selector=".socialicons">
<Variable name="social.text.color" description="Icons Color" type="color" default="#FFFFFF" value="#FFFFFF"/>
<Variable name="social.text1.background" description="Icon 1 Background Color" type="color" default="#3C599F" value="#3C599F"/>
<Variable name="social.text2.background" description="Icon 2 Background Color" type="color" default="#29B8E7" value="#29B8E7"/>
<Variable name="social.text3.background" description="Icon 3 Background Color" type="color" default="#F46899" value="#F46899"/>
<Variable name="social.text4.background" description="Icon 4 Background Color" type="color" default="#454545" value="#454545"/>
<Variable name="social.text5.background" description="Icon 5 Background Color" type="color" default="#454545" value="#454545"/>
<Variable name="social.text6.background" description="Icon 6 Background Color" type="color" default="#454545" value="#454545"/>
</Group>
<Group description="Menu Style for Touch Devices" selector="#sider">
<Variable name="menu.touch.border" description="Touch Menu Border Color" type="color" default="#393939" value="#393939"/>
<Variable name="touch.arrowdown.color" description="Touch Menu ArrowDown Icon Color" type="color" default="#515151" value="#515151"/>
<Variable name="touch.submenu.color" description="Touch Sub Menu Color" type="color" default="#3C3C3C" value="#3C3C3C"/>
<Variable name="touch.submenu.font" description="Touch Sub Menu Font" type="font" default="normal normal 14px Khula" value="normal normal 14px Khula"/>
<Variable name="touch.secondlevel.border" description="Touch SecondLevel SubMenu Border Color" type="color" default="#595959" value="#595959"/>
<Variable name="touch.icon.color" description="Touch Icons Color" type="color" default="#7A7A7A" value="#7A7A7A"/>
</Group>
<Group description="Main" selector="#main">
<Variable name="posts.background.color" description="Main Background Color" type="color" default="#F2F5F8" value="#F2F5F8"/>
<Variable name="body.top.border" description="Top Border Color" type="color" default="#000000" value="#000000"/>
<Variable name="main.text.color" description="Default Text Color" type="color" default="#000000" value="#000000"/>
<Variable name="main.link.color" description="Default Link Color" type="color" default="#CD5C5C" value="#CD5C5C"/>
</Group>
<Group description="Grid Image" selector=".mainwrap">
<Variable name="grid.image.height" description="Image Height" type="length" default="-10px" min="0" max="600px" value="-10px"/>
<Variable name="grid.spacing.value" description="Spacing Between Images on Desktop" type="length" default="60px" min="0" max="140px" value="60px"/>
<Variable name="grid.spacing.value1" description="Spacing Between Images on Laptop" type="length" default="40px" min="0" max="140px" value="40px"/>
<Variable name="grid.spacing.value2" description="Spacing Between Images on Tablets" type="length" default="30px" min="0" max="140px" value="30px"/>
<Variable name="grid.info.background" description="Grid Info Background Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="grid.title.color" description="Grid Image Title Color" type="color" default="#000000" value="#000000"/>
<Variable name="grid.title.font" description="Grid Image Title Font" type="font" default="normal 700 26px Cormorant Garamond" value="normal 700 26px Cormorant Garamond"/>
<Variable name="grid.label.color" description="Grid Label Color" type="color" default="#3e4852" value="#3e4852"/>
<Variable name="grid.label.font" description="Grid Label Font" type="font" default="normal normal 14px Khula" value="normal normal 14px Khula"/>
<Variable name="zoom.icon.background" description="Grid Zoom Icon Background" type="color" default="#f6f7f9" value="#f6f7f9"/>
<Variable name="zoom.icon.color" description="Grid Zoom Icon Color" type="color" default="#2c2c2c" value="#2c2c2c"/>
<Variable name="loadmore.icon.color" description="LoadMore Spinner Color" type="color" default="#2e2e2e" value="#2e2e2e"/>
<Variable name="loadmore.icon.size" description="LoadMore Spinner Size" type="length" default="35px" min="0" max="80px" value="35px"/>
<Variable name="end.icon.color" description="End Icon Color" type="color" default="#000000" value="#000000"/>
<Variable name="end.icon.size" description="End Icon Size" type="length" default="26px" min="0" max="80px" value="26px"/>
</Group>
<Group description="Post Body" selector=".post-body">
<Variable name="posts.loader.color" description="Posts Loader Icon Color" type="color" default="#000000" value="#000000"/>
<Variable name="date.background.color" description="Date Background Color" type="color" default="#a7b9cb" value="#a7b9cb"/>
<Variable name="date.text.color" description="Date Text Color" type="color" default="#000000" value="#000000"/>
<Variable name="date.text.font" description="Date Text Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
<Variable name="year.background.color" description="Year Background Color" type="color" default="#444e66" value="#444e66"/>
<Variable name="year.text.color" description="Year Text Color" type="color" default="#f7f7f7" value="#f7f7f7"/>
<Variable name="year.text.font" description="Year Text Font" type="font" default="normal normal 14px Khula" value="normal normal 14px Khula"/>
<Variable name="date.shadow.color" description="Date Box Shadow Color" type="color" default="#d3dce5" value="#d3dce5"/>
<Variable name="mobile.date.color" description="Mobile Date Color" type="color" default="#6f6f6f" value="#6f6f6f"/>
<Variable name="posttitle2.text.color" description="Post Title Color" type="color" default="#000000" value="#000000"/>
<Variable name="posttitle2.text.font" description="Post Title Font" type="font" default="normal 700 43px Cormorant Garamond" value="normal 700 43px Cormorant Garamond"/>
<Variable name="posttitle2.border.color" description="Post Title Border Color" type="color" default="#9fa9b5" value="#9fa9b5"/>
<Variable name="postbody.text.color" description="Post Body Color" type="color" default="#454a50" value="#454a50"/>
<Variable name="postbody.text.font" description="Post Body Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
<Variable name="blockquote.text.color" description="Blockquote Text Color" type="color" default="#1c1c1c" value="#1c1c1c"/>
<Variable name="blockquote.border.color" description="Blockquote Border Color" type="color" default="#7890a9" value="#7890a9"/>
<Variable name="blockquote.text.font" description="Blockquote Text Font" type="font" default="normal 700 24px Cormorant Garamond" value="normal 700 24px Cormorant Garamond"/>
<Variable name="post.label.color" description="Post Label Text Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="post.label.background" description="Post Label Background Color" type="color" default="#7890a9" value="#7890a9"/>
<Variable name="post.label.font" description="Post Label Font" type="font" default="normal 700 16px Cormorant Garamond" value="normal 700 16px Cormorant Garamond"/>
<Variable name="footer.text.font" description="Footer Text Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
<Variable name="footer.text.color" description="Footer Text Color" type="color" default="#2a2a2a" value="#2a2a2a"/>
<Variable name="footer.lineone.color" description="Footer AuthorName and Date Color" type="color" default="#e25151" value="#e25151"/>
<Variable name="reaction.box.background" description="Reaction Box Background Color" type="color" default="#dcdcdc" value="#dcdcdc"/>
<Variable name="reaction.label.color" description="Reaction Label Color" type="color" default="#454545" value="#454545"/>
<Variable name="location.text.color" description="Location Text Color" type="color" default="#2a2a2a" value="#2a2a2a"/>
<Variable name="location.text.font" description="Location Text Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
<Variable name="location.link.color" description="Location Link Color" type="color" default="#bf4343" value="#bf4343"/>
<Variable name="pager.text.color" description="Prev/Next Text Color" type="color" default="#000000" value="#000000"/>
<Variable name="pager.text.font" description="Prev/Next Text Font" type="font" default="normal 700 17px Cormorant Garamond" value="normal 700 17px Cormorant Garamond"/>
<Variable name="pager.text.border" description="Prev/Next Border Color" type="color" default="#7890a9" value="#7890a9"/>
<Variable name="error.text.color" description="404 Error Page Text Color" type="color" default="#000000" value="#000000"/>
</Group>
<Group description="Author Profile Below Post" selector=".author-profile">
<Variable name="author.box.background" description="Author Box Background Color" type="color" default="#e5eaef" value="#e5eaef"/>
<Variable name="author.name.color" description="Author Name Color" type="color" default="#000000" value="#000000"/>
<Variable name="author.name.font" description="Author Name Font" type="font" default="normal 700 22px Cormorant Garamond" value="normal 700 22px Cormorant Garamond"/>
<Variable name="author.description.color" description="Author Description Color" type="color" default="#4c5054" value="#4c5054"/>
<Variable name="author.description.font" description="Author Description Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
</Group>
<Group description="Related Post" selector=".newright">
<Variable name="post.border.color" description="Related Post Left Border" type="color" default="#dfe3e8" value="#dfe3e8"/>
<Variable name="related.heading.color" description="Related Post Heading Color" type="color" default="#394652" value="#394652"/>
<Variable name="related.heading.font" description="Related Post Heading Font" type="font" default="normal normal 700 Cormorant Garamond" value="normal 700 22px Cormorant Garamond"/>
<Variable name="related.title.color" description="Related Title MouseOver Text Color" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="related.title.font" description="Related Title MouseOver Text Font" type="font" default="normal 700 18px Cormorant Garamond" value="normal 700 18px Cormorant Garamond"/>
</Group>
<Group description="Related Post for Blog/Articles Item" selector=".newright">
<Variable name="relatedtwo.text.color" description="Related Text Color" type="color" default="#485766" value="#485766"/>
<Variable name="relatedtwo.text.font" description="Related Text Font" type="font" default="normal 700 18px Cormorant Garamond" value="normal 700 18px Cormorant Garamond"/>
<Variable name="relatedtwo.dot.color" description="Related Text Dots Color" type="color" default="#485766" value="#485766"/>
</Group>
<Group description="Post Comment" selector=".comments">
<Variable name="comments.background.color" description="Comment Box Background Color" type="color" default="#e5eaef" value="#e5eaef"/>
<Variable name="comments.label.color" description="Comment Heading Color" type="color" default="#000000" value="#000000"/>
<Variable name="comments.label.font" description="Comments Heading Fonts" type="font" default="normal 700 22px Cormorant Garamond" value="normal 700 22px Cormorant Garamond"/>
<Variable name="comments.username.color" description="Comment User Color" type="color" default="#2c2c2c" value="#2c2c2c"/>
<Variable name="comments.user.font" description="Comments User Fonts" type="font" default="normal 700 19px Cormorant Garamond" value="normal 700 19px Cormorant Garamond"/>
<Variable name="comments.date.color" description="Comment Date Color" type="color" default="#435566" value="#435566"/>
<Variable name="comments.text.color" description="Comment Text Color" type="color" default="#242424" value="#242424"/>
<Variable name="comments.text.font" description="Comments Text Font" type="font" default="normal normal 16px Khula" value="normal normal 16px Khula"/>
<Variable name="comments.item.border" description="Comment Item Border Color" type="color" default="#efefef" value="#efefef"/>
</Group>
<Group description="Posts Comment Link" selector=".post-comment-link">
<Variable name="comment.text.color" description="Comment Text Color" type="color" default="#A3A3A3" value="#A3A3A3"/>
<Variable name="comment.icon.color" description="Comment Icon Color" type="color" default="#BEBEBE" value="#BEBEBE"/>
</Group>
<Group description="Search Bar" selector="#sb-search">
<Variable name="search.background.color" description="Background Color" type="color" default="#202020" value="#202020"/>
<Variable name="search.active.background" description="Active Onclick Background" type="color" default="#da6d0d" value="#da6d0d"/>
<Variable name="search.icon.color" description="Search Icon Color" type="color" default="#F7F7F7" value="#F7F7F7"/>
</Group>
<Group description="Scroll To Top" selector="#backtotop">
<Variable name="scroll.background.color" description="Scroll Background Color" type="color" default="#7890a9" value="#7890a9"/>
<Variable name="scroll.arrow.color" description="Scroll Arrow Color" type="color" default="#f7f7f7" value="#f7f7f7"/>
</Group>
*/
/*--------------------------------------
--------Body--------------------------
---------------------------------------*/
body {
background: $(posts.background.color);
color: $(main.text.color);
min-width: 320px;
}
.tbody {
margin-right: auto !important;
margin-left: auto !important;
}
a {
color: $(main.link.color);
text-decoration: none;
}
a:focus {
outline: none;
}
.no-js .preloader {
display: none;
}
.preloader {
display: block;
position: fixed;
overflow: hidden;
width: 100%;
height: 100%;
z-index: 9999;
top: 0;
left: 0;
background: $(posts.background.color); /* this is important so it's not transparent */
}
.preloader .loaded {
height: auto;
left: 50%;
margin: -20px 0px 0px -20px;
position: fixed;
text-align: center;
top: 50%;
width: auto;
color: white;
}
.preloader .loaded i {
font-size: 28px;
color: $(posts.loader.color);
}
.loadtext {
font-family: Arial;
font-size: 15px;
letter-spacing: 0.4px;
text-transform: uppercase;
}
#sider {
width: 300px;
}
.infobox .header #header-inner {
display: none;
}
#header-inner a {
display: inline-block !important;
}
#header-inner {
text-align: center;
}
.muwrap .widget h2, .slwrap .widget h2 {
display: none;
}
.menulinks #menu-v > li > ul {
visibility: hidden;
position: absolute;
left: 275px;
}
html.no-touch body #menu-v li ul li {
position: relative;
}
html.no-touch body #menu-v li ul .sub {
left: 100% !important;
top: 0 !important;
}
html.no-touch #menu-v .arrow:after {
font-family: "Font Awesome 5 Free";
content: "\f054";
font-weight: 900;
position: absolute;
right: 30px;
transition: all 0.3s;
font-size: $(menu.arrow.size);
vertical-align: middle;
line-height: $(menu.arrow.adjust);
color: $(menu.arrow.color);
}
html.no-touch #menu-v > li:hover > .arrow:after {
opacity: 1;
}
body, .fullwrap, .sider {
height: 100%;
}
.topline {
height: 8px;
background: $(body.top.border);
position: fixed;
top: 0;
width: 100%;
z-index: 99999;
}
#backtotop {
bottom: 65px;
position: fixed;
left: auto;
right: 10px;
z-index: 9999;
position: fixed;
z-index: 9998;
display: block;
}
#backtotop a {
background: $(scroll.background.color);
padding: 7px 13px 6px;
text-decoration: none;
border-radius: 3px;
backdrop-filter: blur(10px);
opacity: 0.43;
}
#backtotop .fa.fa-chevron-up {
color: $(scroll.arrow.color);
font-size: 14px;
}
#backtotop a:hover {
opacity: 1;
}
.arrowtop {
color: #708090;
font-size: 22px;
margin-bottom: 12px;
text-align: center;
width: 37px;
}
html {
overflow-x: hidden;
}
.Attribution {
display: none;
}
/*--------------------------------------
--------Sidebar 1--------------------------
---------------------------------------*/
.fullwrap .Header h1 {
margin-bottom: 0px;
}
.kickme .section {
margin: 0px;
}
.kickme .social-feed li {
float: none;
height: 60px;
display: inline-block;
width: 70px;
padding: 0px;
}
.kickme .social-feed img {
border: none;
height: 60px;
width: 70px;
opacity: 1;
}
.kickme .social-feed ul {
line-height: 0 !important;
}
.corner-stamp {
background-size: cover;
float: right;
height: 264px;
margin: 0 !important;
overflow: hidden;
padding: 0;
position: relative;
width: 399px;
z-index: 999;
}
.corner-stamp:after {
content: " ";
background: rgba(210, 189, 58, 0.94);
height: 100%;
left: 0;
overflow: hidden;
position: absolute;
top: 0;
width: 100%;
z-index: 999;
}
#stickyme .stampimg {
height: auto;
position: absolute;
width: 100%;
}
#Blog1.widget {
min-height: none;
}
#stickyme .widget.HTML {
height: 100%;
}
.nosticky #stickyme {
display: none;
}
.maskerr {
height: 100%;
position: absolute;
width: 100%;
}
.maskoo {
box-sizing: border-box;
color: #FFFFFF;
display: block;
left: 0;
padding: 46px 56px;
position: absolute;
right: 0;
text-align: center;
top: 50%;
transform: translate(0%, -50%);
width: 100%;
z-index: 9999;
}
.maskttop {
font-family: Cormorant Garamond;
font-size: 32px;
font-weight: 500;
letter-spacing: 1.9px;
margin-bottom: 10px;
padding-bottom: 6px;
position: relative;
line-height: 1.4;
}
.maskcon {
font-family: Cormorant Garamond;
font-size: 18px;
letter-spacing: 0.4px;
color: #FFFFFF;
line-height: 24px;
}
.maskttop:after {
background: #F4DC12;
bottom: 0;
content: "";
display: inline-block;
height: 3px;
margin-right: -21px;
position: absolute;
right: 50%;
width: 42px;
z-index: 99999999;
}
.main {
position: static !important;
}
#main-wrapper .widget {
margin: 0 !important;
}
.fullarchive, .fullcontact {
z-index: 99999999 !important;
}
.fullarchive .widget-content a {
color: #2c2c2c;
font-family: Khula;
font-size: 18px;
line-height: 24px;
}
.fullarchive .widget-content a:hover {
color: #b94848;
}
.ContactForm .title, .BlogArchive h2 {
color: #000000;
font-family: 'Cormorant Garamond';
font-size: 25px;
font-weight: 700;
letter-spacing: 0.3px;
margin-bottom: 18px;
}
.ContactForm .form form {
color: #474747;
font-family: Khula;
font-size: 15px;
}
.contact-form-button.contact-form-button-submit {
background: #2c2c2c;
border: medium none;
font-family: 'Khula';
font-size: 16px;
letter-spacing: 0.4px;
font-weight: normal;
height: 35px;
width: 100%;
cursor: pointer;
line-height: 24px;
}
.contact-form-button-submit:hover {
border: medium none;
}
.contact-form-error-message-with-border {
font-family: Cormorant Garamond;
font-size: 13px;
padding: 5px;
}
#archivebtn i {
color: $(submenu.icon.color);
}
.no-touch #menu-v i {
color: $(submenu.icon.color);
padding-right: 6px;
font-size: 11px;
}
.touch #menu-v i {
color: $(touch.icon.color);
padding-right: 4px;
}
.arrow {
cursor: pointer;
}
.socialicons i {
border-radius: 100%;
color: $(social.text.color);
font-size: 14px;
height: 28px;
line-height: 29px;
overflow: hidden;
text-align: center;
width: 29px;
}
.socialicons > a:nth-child(1) i {
background: $(social.text1.background);
}
.socialicons > a:nth-child(2) i {
background: $(social.text2.background);
}
.socialicons > a:nth-child(3) i {
background: $(social.text3.background);
}
.socialicons > a:nth-child(4) i {
background: $(social.text4.background);
}
.socialicons > a:nth-child(5) i {
background: $(social.text5.background);
}
.socialicons > a:nth-child(6) i {
background: $(social.text6.background);
}
.socialicons {
line-height: 40px;
margin: 0 auto;
text-align: left;
padding-left: 38px;
padding-right: 30px;
}
.socialicons i, .socialicons img {
margin-right: 8px;
margin-left: 8px;
}
.socialicons a:hover {
color: #898989;
}
.sb-email {
background-position: 0px -20px !important;
}
.sb-blog {
background-position: -20px -20px !important;
}
.sb-twitter {
background-position: -40px -20px !important;
}
.sb-facebook {
background-position: -60px -20px !important;
}
.sb-pinterest {
background-position: -100px -20px !important;
}
.ContactForm .title:before {
content: "\f0e0";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 19px;
line-height: 21px;
color: #2c2c2c;
padding-right: 10px;
position: relative;
top: 0px;
}
.BlogArchive h2:before {
content: "\f187";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 19px;
line-height: 21px;
color: #2c2c2c;
padding-right: 12px;
position: relative;
top: 0px;
}
#cclose {
color: $(menuclose.icon.color);
display: block;
font-size: 25px;
margin-top: -8px;
position: relative;
left: -32px;
}
.widget-item-control a img, .credit, .fullcontact, .fullarchive {
display: none;
}
.b-close {
background: #d5dbe1;
color: #FFFFFF;
padding: 4px 10px;
position: absolute;
right: 15px;
display: block;
cursor: pointer;
}
.b-close i {
color: #2c2c2c;
}
.contact-form-email:focus, .contact-form-name:focus, .contact-form-email-message:focus {
border: none;
box-shadow: none;
}
.hidall {
background: #F2F5F8;
padding: 25px 75px;
}
.BlogArchive .post-count {
color: #515151;
}
.Profile img {
display: block;
float: none;
}
.topwrapper, #back, .eyed {
display: none !important;
}
.fullwrap {
}
.fullwrap.active {
left: 0px;
}
.fullwrap.active #sider {
position: absolute;
bottom: 0px;
}
.fullwrap.active .credit {
position: relative;
padding-top: 25px;
}
#cclose.active:before {
content: "\f057";
font-family: "Font Awesome 5 Free";
font-weight: 900;
line-height: inherit;
}
#dclose {
color: $(navicon.icon.color);
display: block;
font-size: 24px;
position: relative;
}
.goside {
display: block;
left: 50px;
position: absolute;
text-align: center;
top: 23px;
z-index: 999;
}
#dclose:before {
content: "\f0c9";
font-family: "Font Awesome 5 Free";
font-weight: 900;
}
#dclose:after {
content: " ";
font-family: Hammersmith One;
font-size: 18px;
padding-left: 6px;
position: relative;
top: -2px;
}
#dclose.active:before {
content: "\f0c9";
font-family: "Font Awesome 5 Free";
font-weight: 900;
line-height: inherit;
}
#sider {
background: $(sidebar.background.color);
color: #fff;
clear: both;
overflow: visible;
z-index: 9999;
}
.fullwrap.active #sider {
left: 0;
}
.js #sider {
width: 300px;
height: 100%;
position: fixed;
top: 0;
left: 0px;
display: none;
}
.js .active #sider {
display: block;
}
.errorpg.walign {
font-family: Cormorant Garamond;
font-size: 19px;
color: $(error.text.color);
text-align: center;
padding-top: 40px;
font-weight: 700;
}
.errorpg.walign:before {
content: '404';
display: block;
margin-bottom: 8px;
font-size: 60px;
letter-spacing: 3px;
font-family: 'Khula';
line-height: 60px;
}
.errorpg.walign:after{
content:'$(error.page.text)';
letter-spacing: 0.3px;
}
.blog-posts {
background: $(posts.background.color);
}
.post-outer .thumbo img {
display: block;
position: relative;
}
.hoverset .widget {
display: none;
}
.post-outer .thumbo .fullbox {
padding: 22px;
background: $(grid.info.background);
}
.post-outer .thumbo .fullbox .smallbox .postmain {
color: $(grid.title.color);
font: $(grid.title.font);
}
.fa.fa-angle-down {
font-size: 15px;
left: 4px;
position: relative;
top: 2px;
}
.imgg-wrap {
position: relative;
overflow: hidden;
}
.socialbuts {
bottom: 20px;
height: 32px;
margin: auto;
position: absolute;
right: 20px;
width: 32px;
}
.socialbuts .zoom > a {
opacity: 0;
transition: all 0.4s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.blog-posts .post-outer:hover .socialbuts .zoom > a {
opacity: 1;
}
.socialbuts .zoom > a {
background: $(zoom.icon.background);
display: block;
height: 28px;
width: 28px;
border-radius: 50px;
}
.socialbuts .zoom i {
font-size: 18px;
line-height: 18px;
position: absolute;
top: -1px;
left: -1px;
padding: 8px;
color: $(zoom.icon.color);
}
#pic img {
height: 120px !important;
width: 120px !important;
margin: 0 auto;
-moz-border-radius: 80px;
-webkit-border-radius: 80px;
-o-border-radius: 80px;
-ms-border-radius: 80px;
border-radius: 80px;
}
.Profile {
text-align: center;
margin-bottom: 4px;
}
.logo {
display: inline-block
}
#myprofile {
display: block;
}
.topwrapper {
background: #E9E9E9;
height: 267px;
position: relative;
width: 100%;
}
font {
display: none !important;
}
font {
color: #454545;
display: block;
font-size: 13px;
line-height: 18px;
padding-top: 5px;
}
.topper {
color: #FFFFFF;
font-family: 'Trebuchet MS';
font-size: 17px;
height: 50px;
letter-spacing: 0.4px;
position: fixed;
text-decoration: underline;
top: 0;
width: 58px;
z-index: 999;
}
.toptier {
padding-left: 17px;
padding-right: 20px;
padding-top: 12px;
}
.fa.fa-navicon {
color: #DDDDDD;
font-size: 24px;
}
.fa.fa-navicon:hover {
color: #B44444;
}
.labelblog .post-title a {
color: inherit;
}
.labelblog .post-labels, .labelblog .post-comment-link {
display: none;
}
.labelblog .leftcontent {
margin-bottom: 0;
padding-bottom: 0;
}
.labelblog .post-footer {
margin-bottom: 60px;
}
.labelblog .post-outer {
width: 100%;
height: auto;
padding-left: 120px;
padding-right: 120px;
padding-top: 50px;
}
.mainwrap #blog-pager {
padding-left: 210px;
padding-right: 120px;
margin-bottom: 50px;
}
.main #blog-pager a {
font: $(pager.text.font);
color: $(pager.text.color);
letter-spacing: 0.6px;
box-shadow: inset 0 -5px 0px $(pager.text.border);
}
.labelblog .post-outer img {
max-width: 100%;
width: auto;
}
.labelblog .post {
padding-left: 90px;
}
#mydate {
box-shadow: 4px 4px 8px $(date.shadow.color);
left: 0;
position: absolute;
top: 5px;
}
#mydate span {
background: $(date.background.color);
color: $(date.text.color);
font: $(date.text.font);
display: block;
line-height: 20px;
padding-left: 14px;
padding-right: 14px;
}
#mydate .dday {
letter-spacing: 1px;
padding-top: 10px;
border-radius: 2px 2px 0 0;
}
#mydate .dmonth {
letter-spacing: 1px;
padding-bottom: 4px;
}
#mydate .dyear {
background: $(year.background.color);
color: $(year.text.color) !important;
font: $(year.text.font);
letter-spacing: 0.4px;
padding-bottom: 2px;
padding-top: 4px;
line-height: 20px;
border-radius: 0 0 2px 2px;
}
.mobheader {
line-height: inherit;
padding: 22px 25px;
text-align: right;
position: relative;
background: $(mobheader.background.color);
}
.mobheader #header-inner {
text-align: right;
padding-left: 20px;
}
.mobheader .descriptionwrapper {
padding-right: 0px;
}
.mobheader .goside {
top: 50%;
margin-top: -12px;
left: 25px;
}
.mobheader .section, .mobheader .widget {
margin: 0;
}
.mobheader .titlewrapper h1, .mobheader .titlewrapper h1 a {
color: $(mobheader.title.color);
font: $(mobheader.title.font);
padding-right: 0px;
}
.infobox {
padding-left: 0px;
padding-right: 0px;
padding-top: 54px;
padding-bottom: 16px;
margin-top: 0px;
}
#header-wrapper {
text-align: center;
}
#Header1 {
margin-bottom: 0;
margin-top: 0;
}
.toog {
background: none repeat scroll 0 0 #090909;
float: left;
height: 55px;
margin: 0 !important;
position: relative;
width: 75px;
}
.titlewrapper h1 a {
color: $(blogtitle.text.color);
text-decoration: none !important;
}
.titlewrapper h1 {
color: $(blogtitle.text.color);
font: $(blogtitle.text.font);
letter-spacing: 1px;
text-align: left;
padding-right: 36px;
padding-left: 29px;
margin-top: -4px;
}
.descriptionwrapper {
color: $(description.text.color);
font: $(description.text.font);
line-height: 25px;
letter-spacing: 0.2px;
margin-top: -10px;
padding-right: 40px;
text-align: left;
padding-left: 32px;
}
.mobheader .Header .description {
margin: 0;
padding: 0;
color: $(mobheader.description.color);
font: $(mobheader.description.font);
letter-spacing: 0.3px;
padding-left: 10px;
line-height: 24px;
}
.mypic {
border-radius: 100%;
}
.jump-link a {
color: #A44040;
display: inline-block;