-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBlogish Style 1.xml
More file actions
2669 lines (2463 loc) · 131 KB
/
Blogish Style 1.xml
File metadata and controls
2669 lines (2463 loc) · 131 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>
<link href='//fonts.googleapis.com/css?family=Rubik:400,300,500,700,900|Montserrat|Playfair+Display:400,700,900' rel='stylesheet' type='text/css'/>
<link href='//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css' rel='stylesheet'/>
<!-- SEO Meta Tags -->
<meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/>
<b:if cond='data:blog.pageType == "item" and data:blog.url == data:blog.homepageUrl'>
<b:else/>
<b:include data='blog' name='all-head-content'/>
</b:if>
<title>
<b:if cond='data:blog.pageType == "index"'>
<data:blog.pageTitle/>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<data:blog.pageName/> | <data:blog.title/>
<b:else/>
404 | <data:blog.title/>
</b:if>
</b:if>
</title>
<b:if cond='data:blog.pageType == "index"'>
<meta expr:content='data:blog.pageTitle' property='og:title'/>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<meta expr:content='data:blog.pageName + " | " + data:blog.title' property='og:title'/>
</b:if>
</b:if>
<b:if cond='data:blog.metaDescription != ""'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</b:if>
<b:if cond='data:blog.postImageUrl != ""'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<meta content='article' property='og:type'/>
<b:else/>
<meta content='website' property='og:type'/>
</b:if>
<b:if cond='data:blog.pageType == "item" and data:blog.url == data:blog.homepageUrl'>
<b:else/>
<meta expr:content='(data:blog.url == data:blog.homepageUrl ? data:blog.canonicalHomepageUrl : data:blog.canonicalUrl)' property='og:url'/>
</b:if>
<!-- End of Meta Tags -->
<b:skin><![CDATA[/*
-----------------------------------------------
Template Name : Blogish Style 1
Author : MS Design
Author URL : http://alistarbot.com
Version : 1.0
----------------------------------------------- */
/* Variable definitions
====================
<Variable name="keycolor" description="Main Color" type="color" default="#f1c40f" value="#f1c40f"/>
<Group description="Main Color" selector="body">
<Variable name="main.color" description="Main Theme Color" type="color" default="#f1c40f" value="#f1c40f"/>
<Variable name="body.text.color" description="Body Text Color" type="color" default="#656e7f" value="#656d7f"/>
</Group>
<Group description="Backgrounds" selector="body">
<Variable name="body.background.color" description="Outer Background" type="color" default="#f6f3ec" value="#f6f3ec"/>
<Variable name="menu.background.color" description="Menu Background" type="color" default="#3e454c" value="#3e454c"/>
<Variable name="content.background.color" description="Post Background" type="color" default="#ffffff" value="#ffffff"/>
<Variable name="header.background.color" description="Header Background" type="color" default="#fffff" value="#ffffff"/>
<Variable name="footer.background.color" description="Footer Background" type="color" default="#fffff" value="#ffffff"/>
</Group>
<Group description="Links" selector=".main-outer">
<Variable name="link.color" description="Link Color" type="color" default="#2D2D2D" value="#2d2d2d"/>
<Variable name="link.visited.color" description="Visited Color" type="color" default="#888888" value="#888888"/>
<Variable name="link.hover.color" description="Hover Color" type="color" default="#33aaff" value="#32aaff"/>
</Group>
<Group description="Blog Title" selector=".header h1">
<Variable name="header.font" description="Font" type="font"
default="bold 35px 'PT Sans', arial, sans-serif" value="bold 35px 'PT Sans', arial, sans-serif"/>
<Variable name="header.text.color" description="Title Color" type="color" default="#3399bb" value="#3299bb"/>
<Variable name="description.text.size" description="Description Text Size" type="string" default="20px" value="20px"/>
</Group>
<Group description="Blog Description" selector=".header .description">
<Variable name="description.text.color" description="Description Color" type="color"
default="#777777" value="#777777"/>
</Group>
<Group description="Post Title" selector="h2">
<Variable name="post.title.font" description="Font" type="font"
default="normal bold 27px 'Playfair Display', arial, sans-serif" value="normal bold 27px Playfair Display"/>
</Group>
<Group description="Post Body Font" selector=".post-body">
<Variable name="post.body.font" description="Font" type="font"
default="normal normal 14px 'Montserrat', arial, sans-serif" value="normal normal 14px Montserrat, arial, sans-serif"/>
</Group>
<Group description="Post Info Title" selector=".post-info">
<Variable name="post.info.font" description="Font" type="font"
default="500 11px 'Rubik', arial, sans-serif" value="500 11px 'Rubik', arial, sans-serif"/>
</Group>
<Group description="Sidebar Title Font" selector="#sidebar a">
<Variable name="sidebar.font" description="Font" type="font"
default="normal bold 15px 'PT Sans', arial, sans-serif" value="normal bold 15px 'PT Sans', arial, sans-serif"/>
</Group>
<Group description="Sidebar Widgets Title" selector="#sidebar h2">
<Variable name="widget.title.font" description="Title Font" type="font"
default="500 12px 'Rubik', arial, sans-serif" value="500 12px 'Rubik', arial, sans-serif"/>
<Variable name="widget.title.text.color" description="Title Color" type="color" default="#fff" value="#ffffff"/>
</Group>
*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
body{line-height:1;display:block}
*{margin:0;padding:0}
html{display:block}
ol,ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{background:transparent}
table{border-collapse:collapse;border-spacing:0}
.navbar,.post-feeds,.feed-links{display:none}
.section,.widget{margin:0;padding:0}
strong,b{font-weight:bold}
strong,b:hover{left:-.1em;content:'[';-webkit-transform:translateX(-100%);transform:translateX(-100%)}
cite,em,i{font-style:italic}
a:link{text-decoration:none;outline:none;transition:all .25s;color:$(link.color);}
a:visited{color:$(link.visited.color);text-decoration:none}
a:link:hover{text-decoration:none;color:$(link.hover.color)}
a:visited:hover{color:#2D3E52;text-decoration:none}
a img{border:none;border-width:0;outline:none}
img{max-width:100%;vertical-align:middle;border:0}
abbr,acronym{cursor:help}
sup,sub{vertical-align:baseline;position:relative;top:-.4em;font-size:86%}
sub{top:.4em}
small{font-size:86%}
mark{background-color:#ffce00;color:#182025}
p,blockquote,pre,table,figure,hr,ol,ul,dl{margin:1.5em 0}
hr{height:1px;border:none;background-color:#444}
#layout ul{display:none}
.top-wrapper{overflow:hidden;position:relative}
h1, h2, h3, h4, h5, h6 { text-align: left;text-transform: capitalize;font-weight:700;line-height:normal;margin:0 0 .6em }
h1{font-size:200%}
h2{font-size:180%}
h3{font-size:160%}
h4{font-size:140%}
h5{font-size:120%}
h6{font-size:100%}
input,button,select,textarea{font-size:100%;line-height:normal;vertical-align:baseline}
textarea{display:block;box-sizing:border-box}
pre,code{font-family:'Signika',sans-serif;color:#444}
pre{white-space:pre;word-wrap:normal;overflow:auto}
blockquote{font-style:italic;position:relative;font-size:14px;padding:0;padding-left:60px;margin:40px 0;border:0;font-weight:400}
pre,code{font-family:'Signika',sans-serif;color:#444}
pre{white-space:pre;word-wrap:normal;overflow:auto}
blockquote{background-color:#f9f9f9;border-left:8px solid #bfcada;padding:10px;margin:10px}
:focus{outline:0!important}
ul,dl{margin:.5em 0 .5em 3em}
ol{list-style:decimal outside}
ul{list-style:disc outside}
li{margin:.5em 0}
div.clear{clear:both}
.clear{clear:both}
dt{font-weight:bold}
dd{margin:0 0 .5em 2em}
.post ul li span{position:relative;margin:0;padding:5px 8px;margin-bottom:10px;text-decoration:none;transition:all .3s ease-out}
ol{counter-reset:li;list-style:none;font-size:14px;padding:0;}
ol ol{margin:0 0 0 2em}
.post ol li{position:relative;display:block;padding:.4em .4em .4em .8em;margin:.5em 0 .5em 2.5em;background:rgba(232, 232, 232, 0.48);color:#666;text-decoration:none;transition:all .3s ease-out;padding-bottom: 5px; margin-bottom: 5px;}
.post ol li:before{content:counter(li);counter-increment:li;position:absolute;left:-2.5em;top:50%;margin-top:-1em;height:2em;width:2em;line-height:2em;text-align:center;color:#fff;background-color:$(main.color);font-weight: 600;}
.post-body ul li {list-style:none;position:relative;display:block;padding:.4em .4em .4em .8em;margin:.5em 0 .5em 2.2em;background:rgba(232, 232, 232, 0.48);color:#666;text-decoration:none;transition:all .3s ease-out;padding-bottom: 5px!important; margin-bottom: 5px!important; font-size: 15px;}
.post-body ul li:before {content:"\f00c";font-family:FontAwesome;position:absolute;left:-2.5em;top:50%;margin-top:-1em;height:2em;width:2em;line-height:2em;text-align:center;color:#fff;background-color:$(main.color);font-size:13px;}
.sharepost ul li:before {content:initial;font-family:FontAwesome;position:absolute;left:-2.5em;top:50%;margin-top:-1em;height:2em;width:2em;line-height:2em;text-align:center;color:#fff;background-color:initial;font-size:13px;}
.sharepost ul li {list-style:none;position: initial; display: initial; padding: initial; background: initial; color: #666; text-decoration: none; transition: all .3s ease-out; margin: 0; margin-right: 5px;}
.widget .post-body ul {padding:0}
blockquote { background: #f9f9f9; border-left: 10px solid $(main.color); margin: 1.5em 10px; padding: 0.5em 10px; quotes: "\201C""\201D""\2018""\2019"; }
blockquote:before { color: $(main.color); content: open-quote; font-size: 4em; line-height: 0.1em; margin-right: 0.25em; vertical-align: -0.4em; }
blockquote p {display: inline;}
.post-body table th,.post-body table td,.post-body table caption{border:1px solid #eee;padding:10px;text-align:left;vertical-align:top}
.post-body table.tr-caption-container{border:1px solid #eee}
.post-body th{font-weight:700}
.post-body table caption{border:none;font-style:italic}
.post-body td,.post-body th{vertical-align:top;text-align:left;font-size:13px;padding:3px 5px;border:1px solid #eee}
.post-body th{background:#fafafa}
.post-body table.tr-caption-container td{border:none;padding:8px}
.post-body table.tr-caption-container,.post-body table.tr-caption-container img,.post-body img{max-width:100%;height:auto}
.post-body td.tr-caption{color:#666;font-size:80%;padding:0 8px 8px!important}
img{max-width:100%;height:auto;border:none}
table{max-width:100%;width:100%;margin:1.5em auto}
table.section-columns td.first.columns-cell{border-left:none}
table.section-columns{border:none;table-layout:fixed;width:100%;position:relative}
table.columns-2 td.columns-cell{width:50%}
table.columns-3 td.columns-cell{width:33.33%}
table.columns-4 td.columns-cell{width:25%}
table.section-columns td.columns-cell{vertical-align:top}
table.tr-caption-container{padding:4px;margin-bottom:.5em}
td.tr-caption{font-size:80%}
.widget ul{padding:0}
.quickedit{display:none;visibility:hidden}
body{background:$(body.background.color);color:$(body.text.color);font:$(post.body.font);line-height:27px;margin:0}
body#layout #mainbwrap{width:95%;}
body#layout #sidebar-wrapper{width:33%;left:0;padding:0;float:right}
body#layout .sidebar-area{width:100%;margin:0;padding:0}
body#layout #bwrapcontent,body#layout #sidebar-wrapper{padding:0}
body#layout #menu-wrapper {height:initial;}
body#layout .top-header {padding:0}
body#layout .top-navigation-left, body#layout .top-navigation-right {float:initial;}
body#layout #footer-widgetfix .footer-widget {margin-left:0}
hr{background-color:#242d36;height:1px;margin-bottom:26px;padding:0}
img{height:auto;max-width:100%}
a{color:#f45145;text-decoration:none;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}
a:visited{color:#f45145}
a:hover,a:focus,a:active{-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}
.site-header{background:#242d36;border-bottom:5px solid #1e252d;margin:0;position:relative;width:100%;z-index:100}
.site-header img{display:block;margin:0 auto;max-height:200px}
.bwrapsite-content{max-width: 1000px; margin: 0 auto; padding: 0; overflow: hidden; }
.content-area{float:left;margin:0 -25% 0 0;width:66%}
.widget-title{background:none repeat scroll 0 0 #4B3F57;color:#FFF;font-size:16px;font-weight:400;text-transform:uppercase;margin:0 0 5px;position:relative;transition:all .5s ease-out 0}
.sidebar-area{float:right;overflow:hidden;width:31.6%}
#sidebar .widget h2{color:$(widget.title.text.color);font: $(widget.title.font);margin: 0 auto; font-size: 12px;background:$(main.color); padding: 10px; text-align: center; position: relative; text-transform: uppercase;letter-spacing: 1px;display:table;}
#sidebar .widget h2:before{background: #fff url(https://4.bp.blogspot.com/-F1TjHfM859Y/V3AdhkmcKMI/AAAAAAAACME/E3mGPDKVvGoFueVXRvzMelQ32zDVvEu_gCLcB/s1600/bgdot.png);width: 100%; position: relative; overflow: hidden;}
#sidebar .widget{background:#fff;margin-bottom:15px;border-top: 2px solid $(main.color);}
#sidebar .widget a:hover, .PopularPosts ul li a:hover {$(link.hover.color);}
#sidebar .widget-content {padding:8px;}
.site-footer{background:#242d36;clear:both;color:#f0f1f3;font-size:14px;font-weight:600;line-height:1.8em;padding:10px;text-align:center}
.site-footer a{color:#f0f1f3;text-decoration:none}
.authorboxwrap{background: #fff; padding: 20px; overflow: hidden; margin:15px 0 15px;border-top:2px solid $(main.color);}
.authorboxwrap h2{color:$(widget.title.text.color);font: $(widget.title.font);margin: 0 auto; font-size: 12px;background:$(main.color);bottom:20px; padding: 10px; text-align: center; position: relative; text-transform: uppercase;letter-spacing: 1px;display:table;}
.avatar-container {float:left;margin-right:20px;}
.avatar-container img{width: 150px; height: auto; max-width: 100%!important; border-radius: 100%;}
.author_description_container h4{font-weight: 500; font-size: 18px; display: block; margin: 0; margin-bottom: 8px; font-family: Rubik;}
.author_description_container h4 a{color:#333}
.author_description_container p{margin:0;color:#333;font-size:13px;margin-bottom:8px;line-height:25px;font-weight:400;}
.author-box .avatar{margin-left: 2.4rem; float: right !important; border: 2px solid #F0F0F0; padding: 2px; }
.avatar-image-container img{height:70px;width:70px;overflow:hidden;float:left;margin-right:20px;max-width:100%!important;border:2px solid $(main.color);border-radius:100px; padding: 5px}
#comments{padding:0!important;margin-top:25px;}
#comments a {font-size:13px;font-weight:400;}
.comments .avatar-image-container{max-height:100%!important;width:70px!important;margin-right:10px;border-radius:3px;overflow:initial;margin-right:20px;}
.comment-block{border-bottom:1px solid #ecedee;margin-bottom:20px;padding-bottom:20px;overflow:hidden;position:relative}
.comment-header a{font-size:15px;font-style:normal;display:inline-block;margin-bottom:5px;color:#34495E;}
.comments .comments-content .datetime a{font-size:11px;font-weight:600;}
.comments .comments-content .datetime,.comments .comment .comment-actions a{float:right}
.comment-actions a:hover{background:$(main.color);color:#fff;text-decoration:none}
.comment-actions a{color:$(main.color);background: #fff; border: 1px solid $(main.color); padding: 5px 20px!important; margin-left: 10px;}
.comments .comments-content .comment-header{background:#fff;padding:5px;margin-bottom:0;border:1px solid #ddd;}
.comments .comment .comment-actions a{padding:0;}
.comments .comment .comment-actions a:hover{text-decoration:none}
.comments .continue{cursor:pointer;margin-top:-30px;margin-bottom:30px}
.comments .continue a{display:block;color:#333;font-size:11px;font-weight:normal;padding:0}
.comments .comments-content .icon.blog-author{height:initial;width:initial;margin:0 0 -4px 12px;font-weight:700;color:#FFFFFF;font-size:11px;background:$(main.color);padding:3px;border-radius:3px}
.comments .comments-content .icon.blog-author:after{content:"Admin"}
.comments .comments-content .comment-content{text-align:left;padding:20px;background:rgb(235,235,235);color:#232323;border:1px solid #DEDEDE;border-top:0;font-weight: 600;}
.comments .comments-content {padding: 15px; padding-top: 0;}
#comments{padding:15px;margin-bottom:20px;background:#fff;border-top:2px solid $(main.color);}
#comments h4{color:$(widget.title.text.color);font: $(widget.title.font);margin: 0 auto; font-size: 12px;background:$(main.color);padding: 10px; text-align: center; position: relative; text-transform: uppercase;letter-spacing: 1px;display:table;}
.deleted-comment{font-style:italic;color:gray}
.FollowByEmail .follow-by-email-inner .follow-by-email-address{height: 40px!important; border: none; padding: 5px; margin-bottom: 5px; background: #ddd; text-align: center; font-size: 13px; font-family: rubik;}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit{font-family: rubik; height: 50px!important; width: 100%; margin-left: 0; background: $(main.color); font-weight: 700; text-transform: uppercase; padding: 10px 40px}
.follow-by-email-inner p {font-size:13px;font-weight:500;text-align:center;margin: 0; margin-bottom: 10px;}
.FollowByEmail h2 {font-size: 14px; font-weight: 500;}
.followbytext{font-size:15px;color:white;text-align:center;font-family:'Merriweather',serif;font-weight:700}
h2.date-header{margin:10px 0;display:none}
#header-wrapper{overflow:hidden;position: relative; max-width: 1000px; margin: 0 auto; }
#header{float:left;width:100%;max-width:230px;color:#222;margin:0}
#header h1,#header h2,#header p { font: $(header.font); color: $(header.text.color);margin:0}
#header a:hover{color:$(link.hover.color)}
#header .description{ font-size: $(description.text.size); color: $(description.text.color); }
.header img{display:block}
.header-right{float:right;padding:0;overflow:hidden;margin:0;width:100%;max-width:728px;}
.header-right img{display:block;float:right}
.post {background:$(content.background.color); margin-bottom:20px; padding:30px; display: inline-block;}
.post-info .fa, .post-info2 .fa {color: #333;}
.author-info, .comment-info, .time-info {display:inline;margin-right: 30px;}
.post-image {margin:0;z-index:1;padding:0;float:left;margin-right:20px;overflow:hidden;background: #2f3238;}
.post-image img {width:300px;height:200px;transition: 0.9s;-webkit-transition: opacity 1s, -webkit-transform 1s; transition: opacity 1s, transform 1s; -webkit-backface-visibility: hidden; backface-visibility: hidden;}
.post-image:hover img{ opacity: 0.4; -webkit-transform: scale3d(1.1,1.1,1); transform: scale3d(1.1,1.1,1); }
.post-body {line-height:1.6em;text-overflow:ellipsis;width: auto;margin-bottom: 15px;}
h2.post-title, h1.post-title {font: $(post.title.font);border: 0 none; color: #000;letter-spacing: normal; line-height: 1.3em; margin-bottom: 15px; padding: 0; text-transform: capitalize;}
h2.post-title:hover, h1.post-title:hover {}
h2.post-title a, h1.post-title a, h2.post-title, h1.post-title {;z-index:0;margin-top:-10px;line-height: 1.3;}
.post-info {text-transform: capitalize; line-height: 250%; overflow: hidden; color: #999999;margin: 0 0 20px;padding:5px;font: $(post.info.font);}
.post-info2 {text-transform:uppercase; line-height: 250%; overflow: hidden; color: #999999;padding:5px 0;font: $(post.info.font);margin-bottom:20px;font-size:11px;font-family: Montserrat;}
.post-info a {display:inline;background:transparent;color:#8c919b;padding:5px;padding-left:0;margin-bottom:10px;transition:all .3s ease-out;}
.post-info2 a {display: inline; background:$(main.color); color: #ffffff; padding: 5px 10px; transition: all .3s ease-out;}
#outer-wrapper{}
#banner{background:#fff;border:1px solid;border-color:#e5e6e9 #dfe0e4 #d0d1d5;text-align:center;padding:10px;margin:15px}
#search-bar{display:block;position:relative;padding:10px;}
input#sq{background: #ECECEC; color: #464646; margin: 0; padding: 0 20px; height: 60px; outline: 0; box-shadow: initial; line-height: normal; transition: all .1s; border: none; font: $(post.body.font); width: 86%;}
input#sq:focus{color:#333;border-radius:4px;}
#search-form{position:relative;margin:auto;}
#searchsubmit{border: 0; color: #fff; display: inline-block; position: absolute; right: 0; top: 0; padding: 0 30px; transition: all .2s; height: 60px;}
#searchsubmit:hover,#searchsubmit:focus,#searchsubmit:active{background-color:$(link.hover.color);color:#fff;cursor:pointer;outline:0;}
.search-form-icon{color: rgba(255,255,255,1); top:30px; right: 30px; position: absolute;}
input#sq::-webkit-input-placeholder,input#sq:-ms-input-placeholder{color:#777;}
input#sq::-moz-placeholder,input#sq:-moz-placeholder{color:#777;opacity:1;}
[type="search"] {-moz-appearance:textfield;-webkit-appearance:textfield;appearance:textfield;}
.post-summary p {margin: 0 auto; text-align: center; position: relative; overflow: hidden; top: -40px; font-size: 15px;}
.post-summary h3 {background:$(main.color); padding: 8px; font-size:0}
.post-summary h3 a {color:#fff;}
.favtitle {background: #fff; position: relative; top: -60px; text-align: center; padding: 10px 20px; margin:0 auto; width: 70%;border-top:3px solid $(main.color);}
.favtitle a {font: $(post.title.font);line-height: 1.2;}
.post-summary {margin-bottom:20px;border:3px solid $(main.color)}
#FeaturedPost1 h2 {margin: 0 auto;color: #fff; background: $(main.color); padding: 10px; text-align: center; position: relative; bottom:30px; text-transform: uppercase; font:$(widget.title.font); display: table; letter-spacing: 1px;}
#FeaturedPost1 h2:before { content: "\f08a"; font-family: FontAwesome; display: inline-block; margin-right: 6px; }
.cloud-label-widget-content{display:inline-block;text-align:left;margin-top:10px}
.cloud-label-widget-content .label-size{display:inline-block;float:left;font-size:10px;line-height:normal;margin:0 5px 5px 0;opacity:1}
.cloud-label-widget-content .label-size a{background:$(main.color); color: #fff; float: left;line-height: 100%; margin: 0; padding: 10px 8px; height:10px; transition: all .6s;}
.cloud-label-widget-content .label-size a:hover {background:$(link.hover.color);color:#fff;border-radius:0;}
.cloud-label-widget-content .label-size .label-count{background:#555; color: #fff; white-space: nowrap; display: inline-block; padding: 10px 12px;height:10px; margin-left: -3px; line-height: normal; font-size: 10px;}
.Label li{position:relative;padding:10px 20px 10px 30px !important;list-style:disc;display:block;font-size:13px;background:rgba(0, 0, 0, 0.06);}
.Label li:nth-child(even) { background-color: #fff; }
.Label li:before{content:"\f111";font-family:fontAwesome;color:#ccc;font-size:8px;margin-left:15px;position:absolute;top:15px;left:0;padding:0;text-decoration:none;margin-top:1px}
.Label li a{color: #2D2D2D;}
.Label li:hover:before{color:$(link.hover.color);transition:all .6s}
.Label li span{padding:0 10px;display:block;line-height:20px;position:absolute;right:15px;top:10px;font-size:11px; font-weight: 700;background:$(main.color);color:#fff}
.Label li:hover span{background:$(link.hover.color);transition:all .6s}
.sidebar ul li a{color:rgba(29,28,28,0.8);font-weight:400;font-size:15px;transition:all .3s;font-family:'}
.post-body a.img, .post-body .separator a { margin-left: 0!important; margin-right: 0!important; }
.showpagePoint{background:$(main.color)!important; color: #fff; font-weight: 500;}
.showpage a, .showpageNum a, .showpagePoint, .showpageOf {border:1px solid $(main.color);}
span.showpageNum:last-child {float:right;}
#error404,.followby,.modalDialog{background:$(main.color)}
#blog-pager-newer-link{float:left;}
#blog-pager-older-link{float:right;}
#blog-pager a{color:#333;font-size:13px;font-weight:500;line-height:1.3}
#blog-pager{text-align:center;margin-top:10px;}
.hasSub a:after{font-family:'FontAwesome';content:'\f107';top:0;margin-left:3px;position:relative;}
.hasSub ul a:after{content:'';line-height:0}
#nav{display:block;margin-bottom:20px;background:$(menu.background.color);}
.menu{display:block;width:1000px;margin:0 auto!important;}
.menu li{display:inline-block;position:relative;z-index:100;padding:0}
.menu li:first-child{margin-left:0;background: $(main.color)}
.menu li a{font-weight: 400; font-size: 13px; text-decoration: none; padding: 20px 15px; display: block; color: #fff; text-transform: uppercase; }
.menu li a:hover,.menu li:hover>a{color:#fff;background:rgba(0,0,0,0.42)}
.menu ul{visibility:hidden;opacity:0;margin:0;padding:0;width:150px;position:absolute;left:0;background:$(main.color);z-index:99;transform:translate(0,20px);transition:all .2s ease-out}
.menu ul:after{bottom:100%;left:20%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(255,255,255,0);border-bottom-color:#fff;border-width:6px;margin-left:-6px}
.menu ul li{display:block;float:none;background:none;margin:0;padding:0}
.menu ul li a{font-size:12px;font-weight:400;display:block;color:#fff;background:$(main.color)}
.menu ul li a:hover,.menu ul li:hover>a{background:rgba(0,0,0,0.42);color:#fff}
.menu li:hover>ul{visibility:visible;opacity:1;transform:translate(0,0)}
.menu ul ul{left:149px;top:0;visibility:hidden;opacity:0;transform:translate(20px,20px);transition:all .2s ease-out}
.menu ul ul:after{left:-6px;top:10%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:rgba(255,255,255,0);border-right-color:#fff;border-width:6px;margin-top:-6px}
.menu li>ul ul:hover{visibility:visible;opacity:1;transform:translate(0,0)}
.responsive-menu{display:none;padding:20px 15px;background:$(main.color);color:#fff!important;text-transform:uppercase;font-weight:600}
.responsive-menu:hover{background:#374147;color:#fff;text-decoration:none}
.related-postbwrap{width:100%;float:left;background:#fff; border-top: 2px solid $(main.color);}
.related-postbwrap h4{color:$(widget.title.text.color);font: $(widget.title.font);margin: 0 auto; font-size: 12px;background:$(main.color); padding: 10px; text-align: center; position: relative; text-transform: uppercase;letter-spacing: 1px;display:table;}
.related-post,.related-post li{list-style:none;margin:0}
.related-post li:nth-child(3), .related-post li:nth-child(6) {margin-right:0;}
.related-post li{overflow: hidden; line-height: .9; width: 32.2%; float: left; margin-right: 10px;padding:0;}
.related-post .related-post-item-thumbnail{width: 100%; height: 160px; float: left;}
.related-post .related-post-item-title{font-size: 13px;line-height: 1.4; background: #fff; padding: 10px; display: -webkit-box; display: -moz-deck;border-top:2px solid $(main.color);}
.related-post .related-post-item-summary{display:none;font-size:12px;font-weight:600;margin-top:5px;line-height:1.3}
.related-post-item-more, .related-post-item-summary-text {display:none}
.related-postbwrap ul {padding:10px;overflow: hidden;}
.top-header{background:$(header.background.color); position: relative; z-index: 999; padding: 20px 0;}
.fixed_widget{background:none!important;position:fixed!important;top:25px;z-index:99;-webkit-transform:translateZ(0)}
h1.post-title a:hover, h2.post-title a:hover { text-decoration:none; }
.readmore2:hover {background:#555;}
.readmore2 {color: #fff!important; font-size: 12px; font-weight: 500; display: inline-block; padding: 15px 30px; background:$(main.color); text-transform: uppercase;}
.readmore:hover {background:#555;}
.readmore {color: #fff!important; font-size: 12px; font-weight: 500; display: block; padding: 15px 30px; background: $(main.color); text-transform: uppercase; position: relative; margin: 0 auto; text-align: center; width: 25%;}
.smoothscroll-top { position:fixed; opacity:0; visibility:hidden; overflow:hidden; text-align:center; z-index:99; background:$(main.color); color:#fff; width:47px; height:44px; line-height:44px; right:25px; bottom:-25px; padding-top:2px; transition:all 0.5s ease-in-out; transition-delay:0.2s; }
.smoothscroll-top:hover { background-color:#fff; color:$(main.color); transition:all 0.2s ease-in-out; transition-delay:0s; }
.smoothscroll-top.show { visibility:visible; cursor:pointer; opacity:1; bottom:25px; }
.smoothscroll-top i.fa { line-height:inherit; }
.top-navigation-wrapper{ color: #545454; }
.top-navigation-wrapper a, .top-navigation-wrapper a:hover{ color: #545454; }
.top-navigation-wrapper{border-color: #e4e4e4; border-bottom: 1px solid #eee; overflow: hidden;}
.container{ max-width: 1000px;margin:auto; }
.top-navigation-left{ float: left; }
.top-navigation-left-text li {font-size: 10px; list-style: none; display: -webkit-inline-box; font-weight: 500; padding:13px; text-transform: uppercase; border-right: 1px solid #eee;display: -moz-box;transition: all 0.3s ease-out 0s;}
.top-navigation-left-text li:hover {background:$(main.color);transition: all 0.3s ease-out 0s;}
.top-navigation-left-text li:hover a {color:#fff;}
.top-navigation-right{ float: right; }
.top-social-wrapper{ padding-top: 8px; padding-bottom: 8px; } /* height = 33px */
#social-icon, #footer-social-icon {margin:0}
#social-icon li {display:inline-block;position:relative}
#footer-social-icon li {display:inline-block;position:relative}
#social-icon .widget ul, #footer-social-icon .widget ul {padding:0}
#social-icon .social a {display: block; font-size: 16px; color: #F1C40F; text-align: center; position: relative; z-index: 5; transition: .4s; border: 1px solid $(main.color); padding: 0 8px;}
#footer-social-icon a {display:block;font-size:16px;color:#fff;text-align:center;position:relative;z-index:5;-webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s;}
.social li a:hover{transition:.4s;}
#social-icon .social a:hover {color:#444;opacity:1}
#footer-social-icon a:hover{transform: scale(1.2); -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s;}
#social-icon .social a:before {display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:28px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:13px}
#footer-social-icon a:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:28px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:20px}
.facebook a:before{content:"\f09a"}
.twitter a:before{content:"\f099"}
.gplus a:before{content:"\f0d5"}
.youtube a:before{content:"\f167"}
.skype a:before{content:"\f17e"}
.stumbleupon a:before{content:"\f1a4"}
.tumblr a:before{content:"\f173"}
.vine a:before{content:"\f1ca"}
.stack-overflow a:before{content:"\f16c"}
.linkedin a:before{content:"\f0e1"}
.dribbble a:before{content:"\f17d"}
.soundcloud a:before{content:"\f1be"}
.behance a:before{content:"\f1b4"}
.digg a:before{content:"\f1a6"}
.instagram a:before{content:"\f16d"}
.pinterest a:before{content:"\f0d2"}
.delicious a:before{content:"\f1a5"}
#footer-social-icon .facebook {background:#3b5998;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .twitter {background:#55acee;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .gplus {background:#dd4b39;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .youtube {background:#bb0000;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .skype {background:#12A5F4;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .stumbleupon {background:#EB4823;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .tumblr {background:#32506d;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .vine {background:#00bf8f;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .linkedin {background:#007bb5;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .dribbble {background:#ea4c89;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .soundcloud {background:#f50;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .behance {background:#1769ff;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .digg {background:#005be2;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .instagram {background:#125688;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .pinterest {background:#cb2027;width: 35px; height: 30px; line-height: 35px;}
#footer-social-icon .delicious {background:#3399ff;width: 35px; height: 30px; line-height: 35px;}
#footer1 {float:left;width:300px;border-right: 1px solid #ddd;margin-right: 20px;}
#footer-subscribe {overflow:hidden;}
#searchsubmit, .breadcrumbs {background:$(main.color)}
#footer-wrapper {background-color:$(footer.background.color);border-top:1px solid #eee;text-align: center;margin-top:30px;}
.footer-logo{width: 1000px; margin: 20px auto; height: 130px;}
#footerfix {overflow:hidden;background-color:rgb(66, 66, 66)}
.copyleft {text-align: center; font-weight: 500;margin:10px;color:#fff;font-size:12px;padding:10px;}
#copyright {float:right;color:#fff;font-size:12px;margin-right:30px}
.copyleft a,#copyright a {color:$(main.color);text-decoration:none;}
.copyleft a:hover,#copyright a:hover {color:#a94334;text-decoration:none;}
]]></b:skin>
<b:template-skin>
body#layout div.section {background-color:transparent;border:0;font-family:sans-serif;margin:0;overflow:visible;padding:0;position:relative}
body#layout .top-tab-widget-menu ul,body#layout ul,#layout ul,body#layout div.section h4,#layout div.section h4 {display:none;}
body#layout .draggable-widget .widget-wrap2 {background: #FEC606 url(https://www.blogger.com/img/widgets/draggable.png) no-repeat 4px 50%;}
body#layout .add_widget {background-color:rgb(254, 198, 6);border: 1px dashed #3a3a3a!important;}
body#layout .add_widget a {color: white}
body#layout .editlink {color: #fff !important; background-color: #fec606; padding: 0px 20px; border-radius: 50px;}
body#layout #header {width:30%;margin:4px;float:left;background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;}
body#layout #header:before {content: "Header"; font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #header-right {width:63.5%;margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;float:right;}
body#layout #header-right:before {content: "Header ad slot (728x90 px )";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #top-menu {width:46%;float:left;margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;}
body#layout #top-menu:before {content: "Top Menu Bar"; font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #social-icon {width:46%;float:right;margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;}
body#layout #social-icon:before {content: "Top Social Icons";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #nav {margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;}
body#layout #nav:before {content: "Main Menu";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #FeaturedPost1 {margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;}
body#layout #FeaturedPost1:before {content: "Featured Post";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #Blog1 {margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;width: 100%;}
body#layout #Blog1:before {content: "Main Blog";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout .sidebar-area {width:88.5%;margin:4px;float: left; background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;}
body#layout .sidebar-area:before {content: "Sidebar";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #FollowByEmail1 {width:50%;margin:4px;float:right;margin-bottom: 10px;}
body#layout #footer-wrapper { background-color: #fff; padding:10px!important; border: 1px solid #fec606; margin-bottom: 10px;}
body#layout #footer-wrapper:before {content: "Footer Wrapper";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout .footer-logo {width:initial;height:120px;}
</b:template-skin>
<style type='text/css'>
.PopularPosts ul,.PopularPosts li,.PopularPosts li img,.PopularPosts li a,
.PopularPosts li a img {margin:0;padding:0;list-style:none;border:none;
background:none;outline:none;}
.PopularPosts ul {margin:0;list-style:none;color:#333;}
.PopularPosts ul li img {display:block;margin-right:10px;width:110px;height:90px;float:left;transition:all 0.3s ease-out;}
.PopularPosts ul li img:hover {background:#fff;opacity:0.9;}
.PopularPosts ul li {background-color:#fff;margin:2px;padding:0;position:relative;transition:all 0.3s ease-out; border-bottom: 1px solid rgb(239, 239, 239);}
.PopularPosts ul li:first-child {border-top:none;}
.PopularPosts ul li:last-child {border-bottom:none;}
.PopularPosts ul li .item-title a, .PopularPosts ul li a {color: #333; text-decoration: none;transition: all 0.3s ease-out;line-height: 1; text-align: justify;}
.PopularPosts ul li:before {display:none;list-style:none;}
.PopularPosts .item-thumbnail {margin:0 0 0 0;}
.PopularPosts .item-snippet {font-size:11px;color:#333;font-weight:400;}
.profile-img{display:inline;opacity:1;margin:0 6px 3px 0;}
.PopularPosts .item-title {padding-bottom: 8px; line-height: 1.2;}
.post-summary {padding: 30px; background: #fff;}
.breadcrumbs{ overflow: hidden;margin-bottom: 10px;padding:20px;}
.breadcrumbs > span {padding:0;}
.breadcrumbs a {font-size:13px;font-weight:500;}
.breadcrumbs span a {color:#fff;padding:0 7px;}
.breadcrumbs span:first-child a{color:#fff;}
.breadcrumbs span a:hover {color:#fc3931;}
.breadcrumbs a:hover {color:#fc3931;}
.fa-angle-right{font-size:12px}
.showpage a,.showpageNum a,.showpagePoint,.showpageOf{position:relative;background:#fff;display:inline-block;font-size:12px;font-weight:500;color:rgba(0,0,0,.8);margin:0 4px 0 0;background: white; padding: 15px 20px;transition:all .3s;float:left;text-transform: uppercase;}
.showpageNum a:before{content:'';position:absolute;top:0;bottom:0;left:0;right:0;transition:box-shadow 0.5s}
.showpage a:hover,.showpageNum a:hover,.showpagePoint:hover{background:rgba(0,0,0,0.03);color:#333;position:relative;}
.showpagePoint{color:#fff;}
.showpage a,.showpageNum a,.showpagePoint,.showpageOf{margin:0;}
#ArchiveList a.post-count-link, #ArchiveList a.post-count-link:link, #ArchiveList a.post-count-link:visited {text-decoration:none;font-size:13px;font-weight:700;}
span.post-count {font-size:11px;font-weight:700;}
.BlogArchive #ArchiveList ul.posts li {font-size:12px;}
#ArchiveList select {width: 100%;padding: 15px;margin-bottom: 5px;margin-top:10px;border: 1px solid rgba(201, 201, 201, 0.52);font-size:13px;}
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in {
opacity:0; /* make things invisible upon start */
-webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
-moz-animation:fadeIn ease-in 1;
animation:fadeIn ease-in 1;
-webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
-moz-animation-fill-mode:forwards;
animation-fill-mode:forwards;
-webkit-animation-duration:1s;
-moz-animation-duration:1s;
animation-duration:1s;
}
.fade-in.one {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}
.fade-in.two {
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}
.fade-in.three {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
}
@media screen and (max-width:1066px) {
.wrapper {width:100%}
}
@media screen and (max-width:960px) {
#header h1, #header h2, #header p {text-align:center;}
#outer-wrapper {padding: 0 10px;margin-top:20px;}
.mainWrap{width:768px}
.menu ul{top:37px}
.menu li a{font-size:12px}
a.homer{background:#374147}
h2.post-title a, h1.post-title a, h2.post-title, h1.post-title {margin-top:0;line-height:1em;}
.bwrapsite-content{width:100%}
.content-area {float:none;width:initial;width:100%!important}
.sidebar-area {width:initial!important;float:none;}
#header-ad {height:auto;}
ul#relpost_img_sum li {width:100%!important;}
.top-social {display:none;}
.header-right {margin-top:10px;}
.footer-logo {width:100%;height:initial;}
#footer1 {float:initial;width:initial;border:0;margin-bottom: 20px;}
.FollowByEmail h2 {text-align:center;}
<b:if cond='data:blog.pageType == "item"'>
.post {width:initial!important;}
</b:if>
}
@media only screen and (max-width:768px){
#header {float:initial;margin:0 auto;}
.readmore {width:30%;}
.mainWrap{width:auto;padding:50px 20px}
.menu{display:none}
.responsive-menu{display:block;}
#nav{margin:0;background:none}
.menu li{display:block;margin:0}
.menu li a{background:#fff;color:#797979}
.menu li a:hover,.menu li:hover>a{color:#fff}
.menu ul{visibility:hidden;opacity:0;top:0;left:0;width:100%;transform:initial}
.menu li:hover>ul{visibility:visible;opacity:1;position:relative;transform:initial}
.menu ul ul{left:0;transform:initial}
.menu li>ul ul:hover{transform:initial}
.post-body {width:auto!important;}
.pager-left, .pager-right {width:43%!important;}
.related-postbwrap {width:initial;}
.related-post-item-title {font-size:12px!important;}
.related-post li {width: 32%;}
}
@media only screen and (max-width:640px){
#header-wrapper {text-align:center;max-width: 90%;}
.post-body {width:auto!important;line-height: 1.4; font-size: 13px;}
.author-info, .comment-info, .time-info {margin-right:10px;}
}
@media only screen and (max-width:480px){
.top-navigation-left {display:none;}
.top-navigation-right {margin:0 51px;}
#header {max-width: initial;}
.favtitle a {font-size: 14px;}
.post-summary p {font-size:13px;}
.readmore {width:initial;}
h2.post-title, h1.post-title {font-size:18px;}
.post-image {float:none;margin-right:0;margin-bottom:8px}
.post-image img {width:100%!important;}
.post-info {margin:0;font-size:8px;margin-bottom: 8px;}
.author-info, .home-link {display:none;}
.showpage a, .showpageNum a, .showpagePoint, .showpageOf {padding: 8px 10px;}
#blog-pager {overflow:hidden!important;}
.pager-left, .pager-right {width:95%!important;}
.pager-left {margin-bottom:5px!important;}
.related-post li {width:100%!important;margin-bottom: 10px;}
.sharepost li {float:none!important;width:initial!important;}
.comments .comments-content .datetime a, .avatar-image-container {display:none;}
.comments .comment-block {margin-left:0}
.post-info2 {margin-top:0;margin-bottom:10px;}
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
.post-body {display:none;}
</b:if></b:if>
}
@media screen and (max-width:320px){
.top-navigation-right {margin:0 23px}
}
</style>
<b:if cond='data:blog.pageType == "item"'>
<style type='text/css'>
.post {padding:15px;width: 95.6%;margin-bottom:0}
.post-body {color: #444; margin-right: 0;margin-top:5px;text-align:initial;}
.post img:hover {opacity:0.95;}
.post-info {font-size: 12px; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 15px;}
h2.post-title a, h1.post-title a, h2.post-title, h1.post-title {margin-top:0}
.label-info {font-size: 12px;}
.sharepost li{width:19%;padding:0;list-style:none;}
.sharepost li a{padding:10px 0;color:#fff;display:block;font-size: 13px;font-weight:500}
.sharepost{overflow:hidden;text-align:center;margin-bottom:20px;margin-top:20px;}
.sharepost li a:hover{opacity:0.8;color:#444;}
.sharepost li .twitter{background-color:#55acee;}
.sharepost li .facebook{background-color:#3b5998;}
.sharepost li .gplus{background-color:#dd4b39;}
.sharepost li .pinterest{background-color:#cc2127;}
.sharepost li .linkedin{background-color:#0976b4;}
.sharepost li .twitter:hover,.sharepost li .facebook:hover,.sharepost li .gplus:hover,
.sharepost li .pinterest:hover,.sharepost li .linkedin:hover{opacity:0.9;color:#fff;}
.sharepost li{float:left;margin-right:1.2%}
.sharepost li:last-child{margin-right:0}
.sharepost li .fa:before{margin-right:5px}
.ad_banner728 img {max-width:100%;}
.ad_banner728 {margin-bottom:10px;}
.old_new {display:none;}
.pager{padding:0;margin-top:15px;}
.pager-left{background:#fff;width:45%;float:left;margin:0;text-align:left;color:#333;transition:all .3s ease-out;padding:15px;height:64.5px}
.pager-right{background:#fff;width:45%;float:right;margin:0;text-align:right;color:#333;transition:all .3s ease-out;padding:15px;height:64.5px}
.pager-right:hover .pager-title-left,.pager-left:hover .pager-title-left{color:#999!important;}
.pager-left a,.pager-right a{color:#999;}
.pager-left a,.pager-right a,.current-pageleft,.current-pageright{font-size:13px;color: rgb(81, 81, 81); font-weight:600;background:none;text-decoration:none;}
.current-pageleft{padding:0 0 0 15px;}
.current-pageright{padding:0 15px 0 0;}
.pager-title-left{font-size:15px;font-weight:600;transition:all .3s ease-out;margin-bottom: 5px; display: block;}
.ispager-left{margin:0}
.ispager-right{margin:0}
#blog-pager {overflow: initial;margin:0;}
#blog-pager-newer-link, #blog-pager-older-link {line-height:1.3;}
</style>
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<style type='text/css'>
#outer-wrapper {display:none;}
#error404 {text-align:center;margin-bottom:50px;font-weight:400;font-size:20px;position:fixed;width:100%;height:100%;line-height:1.5em;z-index:9999;}
#error-text {top:30%;position:relative;font-size:20px;color:#eee;}
#error-text a{background:#fff; padding: 10px; border-radius: 5px;}
#error-text a:hover{color:#eee;}
#error-text p {color:#eee;margin:50px 0 0 0;}
#error-text span {position:relative;color:#fff;font-size:450%;padding:0 20px;border-radius:5px;font-weight:700;letter-spacing:3px;transition:all .5s}
#error-text span:hover {color:#fff;-webkit-animation:jelly .5s;-moz-animation:jelly .5s;-ms-animation:jelly .5s;-o-animation:jelly .5s;animation:jelly .5s;}
@-webkit-keyframes jelly{
from,to{-webkit-transform:scale(1,1);transform:scale(1,1)}25%{-webkit-transform:scale(.9,1.1);transform:scale(.9,1.1)}50%{-webkit-transform:scale(1.1,.9);transform:scale(1.1,.9)}75%{-webkit-transform:scale(.95,1.05);transform:scale(.95,1.05)}}
@keyframes jelly{
from,to{-webkit-transform:scale(1, 1);transform:scale(1,1)}25%{-webkit-transform:scale(.9,1.1);transform:scale(.9,1.1)}50%{-webkit-transform:scale(1.1,.9);transform:scale(1.1,.9)}75%{-webkit-transform:scale(.95, 1.05);transform:scale(.95, 1.05)}}
@media only screen and (max-width:640px){
#error-text span {font-size:200%;}
#error-text a:hover {color:#fff;}}
</style>
</b:if>
<b:include data='blog' name='google-analytics'/>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js'/>
<script type='text/javascript'>
snippet_count = 200;
//<) {
for (var _0x8dd1x4 = _0x8dd1x2['split']('<'), _0x8dd1x5 = 0; _0x8dd1x5 < _0x8dd1x4['length']; _0x8dd1x5++) {
-1 != _0x8dd1x4[_0x8dd1x5]['indexOf']('>') && (_0x8dd1x4[_0x8dd1x5] = _0x8dd1x4[_0x8dd1x5]['substring'](_0x8dd1x4[_0x8dd1x5]['indexOf']('>') + 1, _0x8dd1x4[_0x8dd1x5]['length']))
};
_0x8dd1x2 = _0x8dd1x4['join']('')
};
for (_0x8dd1x3 = _0x8dd1x3 < _0x8dd1x2['length'] - 1 ? _0x8dd1x3 : _0x8dd1x2['length'] - 2;
' ' != _0x8dd1x2['charAt'](_0x8dd1x3 - 1) && -1 != _0x8dd1x2['indexOf'](' ', _0x8dd1x3);) {
_0x8dd1x3++
};
return _0x8dd1x2 = _0x8dd1x2['substring'](0, _0x8dd1x3 - 1), _0x8dd1x2 + '...'
}
function createSnippet(_0x8dd1x2) {
var _0x8dd1x3 = document['getElementById'](_0x8dd1x2),
_0x8dd1x4 = snippet_count,
_0x8dd1x5 = '<div class="snippets">' + removeHtmlTag(_0x8dd1x3['innerHTML'], _0x8dd1x4) + '</div>';
_0x8dd1x3['innerHTML'] = _0x8dd1x5
};
// Thumbnail Image Resizer
function bp_thumbnail_resize(e,t){var n=300;var r=200;image_tag='<img width="'+n+'" height="'+r+'" src="'+e.replace("/s72-c/","/w"+n+"-h"+r+"-c/")+'" alt="'+t.replace(/"/g,"")+'" title="'+t.replace(/"/g,"")+'"/>';if(t!="")return image_tag;else return""}
//]]>
</script>
</head>
<body>
<b:if cond='data:blog.pageType == "error_page"'>
<div id='error404'>
<div id='error-text'>
<span>404 Page Not Found</span>
<p><a class='back' href='/'><i class='fa fa-home'/> HOME</a></p>
</div>
</div>
</b:if>
<div class='top-navigation-wrapper'>
<div class='top-navigation-container container'>
<div class='top-navigation-left'>
<b:section class='menu2' id='top-menu' maxwidgets='1' showaddelement='yes'>
<b:widget id='LinkList151' locked='true' title='Top Menu' type='LinkList' version='1' visible='true'>
<b:includable id='main'>
<div class='widget-content'>
<ul class='top-navigation-left-text' itemscope='itemscope' itemtype='http://schema.org/SiteNavigationElement'>
<b:loop values='data:links' var='link'>
<li itemprop='name'><a expr:href='data:link.target' itemprop='url'><data:link.name/></a></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<div class='top-navigation-right'>
<b:section class='social-icon' id='social-icon' maxwidgets='1' showaddelement='yes'>
<b:widget id='LinkList55' locked='true' title='Social Media Icons' type='LinkList' version='1' visible='true'>
<b:includable id='main'>
<ul class='social'>
<b:loop values='data:links' var='link'>
<li expr:class='data:link.name'><a expr:href='data:link.target' expr:title='data:link.name'/></li>
</b:loop>
</ul>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
</div>
<div class='clear'/>
<div class='top-header'>
<div id='header-wrapper' itemscope='itemscope' itemtype='http://schema.org/WPHeader'>
<b:section class='header section' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Blogish Style1 (Header)' type='Header' version='1' visible='true'>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "BEHIND"'>
<!--
Show image as background to text. You can't really calculate the width
reliably in JS because margins are not taken into account by any of
clientWidth, offsetWidth or scrollWidth, so we don't force a minimum
width if the user is using shrink to fit.
This results in a margin-width's worth of pixels being cropped. If the
user is not using shrink to fit then we expand the header.
-->
<b:if cond='data:mobile'>
<div id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
<b:else/>
<div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "_height: " + data:height + "background-repeat: no-repeat; "' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
<b:else/>
<!--Show the image only-->
<div id='header-inner'>
<a expr:href='data:blog.homepageUrl' style='display: block'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block'/>
</a>
<!--Show the description-->
<b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'>
<b:include name='description'/>
</b:if>
</div>
</b:if>
<b:else/>
<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<h1 class='title'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper'>
<p class='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='title'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<data:title/>
<b:else/>
<a expr:href='data:blog.homepageUrl'><data:title/></a>
</b:if>
</b:includable>
</b:widget>
</b:section>
<b:section class='header-right section' id='header-right' maxwidgets='1' showaddelement='yes'>
<b:widget id='HTML101' locked='false' title='Put your ad code here' type='HTML' version='1' visible='true'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<div class='widget-content'>
<data:content/>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<a class='responsive-menu' href='#' id='resp-menu'><i class='fa fa-reorder'/> Menu</a>
<b:section id='nav' maxwidgets='1' showaddelement='yes'>
<b:widget id='LinkList150' locked='true' title='Main Menu' type='LinkList' version='1' visible='true'>
<b:includable id='main'>
<div class='widget-content'>
<ul class='menu' itemscope='itemscope' itemtype='http://schema.org/SiteNavigationElement'>
<li><a href='/'>Home</a></li>
<b:loop values='data:links' var='link'>
<li itemprop='name'><a expr:href='data:link.target' itemprop='url'><data:link.name/></a></li>
</b:loop>
</ul>
<script type='text/javascript'>
//<![CDATA[
$("#LinkList150").each(function(){var e="<ul class='menu'><li><ul class='sub-menu'>";$("#LinkList150 li").each(function(){var t=$(this).text(),n=t.substr(0,1),r=t.substr(1);"_"==n?(n=$(this).find("a").attr("href"),e+='<li><a href="'+n+'">'+r+"</a></li>"):(n=$(this).find("a").attr("href"),e+='</ul></li><li><a href="'+n+'">'+t+"</a><ul class='sub-menu'>")});e+="</ul></li></ul>";$(this).html(e);$("#LinkList150 ul").each(function(){var e=$(this);if(e.html().replace(/\s| /g,"").length==0)e.remove()});$("#LinkList150 li").each(function(){var e=$(this);if(e.html().replace(/\s| /g,"").length==0)e.remove()})});
$('ul.sub-menu').parent('li').addClass('hasSub');
//]]>
</script>
</div>
</b:includable>
</b:widget>
</b:section>
<div class='clear'/>
<div id='outer-wrapper'>
<div class='clear'/>
<div class='bwrapsite-content' id='bwrapcontent'>
<div class='content-area' id='primarybwrap'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<b:section id='favpost' maxwidgets='1' showaddelement='yes'>
<b:widget id='FeaturedPost1' locked='false' title='Featured Post' type='FeaturedPost' version='1' visible='true'>
<b:includable id='main'>
<!-- Only display title if it's non-empty -->
<b:include name='content'/>
<b:include name='quickedit'/>
</b:includable>
<b:includable id='content'>
<div class='post-summary'>
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<b:if cond='data:showFirstImage and data:postFirstImage != ""'>
<a expr:href='data:postUrl'><img class='image' expr:src='data:postFirstImage'/></a>
</b:if>
<b:if cond='data:showPostTitle and data:postTitle != ""'>
<div class='favtitle'> <a expr:href='data:postUrl'><data:postTitle/></a></div>
</b:if>
<b:if cond='data:showSnippet and data:postSummary != ""'>
<p>
<data:postSummary/>
</p>
<a class='readmore' expr:href='data:postUrl + "#more"' expr:title='data:post.title'> Continue reading <i class='fa fa-long-arrow-right'/></a>
</b:if>
</div>
<style type='text/css'>
.image {
width: 100%;
}
</style>
</b:includable>
</b:widget>
</b:section>
</b:if>
<div class='bwrapsite-main' id='mainbwrap' itemscope='itemscope' itemtype='http://schema.org/Blog' role='main'>
<b:section class='mainblogsec' id='mainblogsec' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='1' visible='true'>
<b:includable id='main' var='top'>
<b:if cond='data:mobile == "false"'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='posts' name='breadcrumb'/>
<data:defaultAdStart/>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.isDateStart'>
<b:if cond='data:post.isFirstPost == "false"'>
</div></div>
</b:if>
</b:if>
<b:if cond='data:post.isDateStart'>
<div class="date-outer">
</b:if>
<b:if cond='data:post.dateHeader'>