-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
1060 lines (865 loc) · 42.7 KB
/
style.css
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
/*********************************************************************************************
Theme Name: LitePress
Theme URI: http://www.wpzoom.com/themes/litepress
Version: 1.2.2
Author: WPZOOM
Author URI: http://www.wpzoom.com/
Tags: two-columns, custom-background
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
The PHP code portions of this WPZOOM theme are subject to the GNU General Public
License, version 2. All images, cascading style sheets, and JavaScript elements are
released under the WPZOOM Proprietary Use License below.
**********************************************************************************************
WARNING! DO NOT EDIT THIS FILE!
To make it easy to update your theme, you should not edit the styles in this file. Instead use
the custom.css file to add your styles. You can copy a style from this file and paste it in
custom.css and it will override the style in this file.
**********************************************************************************************
1. Toolbox CSS ----------------------- All Theme Files
2. Global Styles --------------------- All Theme Files
3. Header ---------------------------- header.php
4. Homepage -------------------------- index.php
5. Archive Posts ---------------------- loop.php
6. Single Post ------------------------ single.php
7. Sidebar & Widgets ------------------ sidebar.php
8. Comments --------------------------- comments.php
9. Footer ---------------------------- footer.php
**********************************************************************************************/
/*********************************************************************************************
1. Toolbox CSS ------------------------- All Theme Files
*********************************************************************************************/
/* Reset & General Styling */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
html { font-size: 100%; overflow-y: scroll; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr { border: 0; border-top: 1px solid #ccc; display: block; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
pre, code { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
ul, ol { margin: 0; padding: 0; list-style-position: inside; }
ul ul, ol ol, ul ol, ol ul { margin: 0; }
dd { margin: 0 0 0 40px; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
svg:not(:root) { overflow: hidden; }
figure, form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
legend { border: 0; *margin-left: -7px; padding: 0; }
label { cursor: pointer; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; *overflow: visible; }
table button, table input { *overflow: auto; }
button, input[type=button], input[type=reset], input[type=submit] { cursor: pointer; -webkit-appearance: button; }
input[type=checkbox], input[type=radio] { box-sizing: border-box; }
input[type=search] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid { }
input:invalid, textarea:invalid { background-color: #f0dddd; }
table { border-collapse: collapse; border-spacing: 0; }
th { text-align: left; }
tr, th, td { padding-right: 1.625em; border-bottom: 1px solid #EAE7DE; }
td { vertical-align: top; }
/* Smart clearfix */
.clear, .cleaner { clear: both; height: 0; overflow: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
/* Headings */
h1,h2,h3,h4,h5,h6 { margin:0; padding:0; }
h1 { font-size: 26px; }
h2 { font-size: 22px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
.floatleft { float: left; }
.floatright { float: right; }
.sticky, .bypostauthor {}
/* Text Selection Color */
::-moz-selection { background: #05C; color: #fff; text-shadow: none; }
::selection { background: #05C; color: #fff; text-shadow: none; }
img::-moz-selection { background: transparent; }
img::selection { background: transparent; }
/* Navigation */
div.navigation { text-align:center; margin: 0 0 10px; font-size: 12px; }
div.navigation a { font-weight: normal; padding:0 10px; line-height: 50px; }
div.navigation span.current { padding: 0 10px; color:#18629D; font-weight:bold; }
div.navigation span.pages { margin-right: 10px; display: none; }
div.navigation .alignleft, div.navigation .alignright { margin: 0; }
/* Forms */
input, textarea { padding:3px; border: 1px solid #D9D6D6; color: #000; -webkit-box-shadow: inset 0 1px 1px #E1E1E1 ; -moz-box-shadow: inset 0 1px 1px #E1E1E1 ; box-shadow: inset 0 1px 1px #E1E1E1; background: #fff; font-family:Arial, Helvetica, sans-serif; }
input:focus, textarea:focus { border-color: #999; }
button,
input[type=button],
input[type=reset],
input[type=submit] { background: #000; padding:5px 10px; border: none 0; color: #fff; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; text-shadow:none; height:33px;}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover { background: #222; cursor: pointer; -webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; transition-duration: 0.2s; }
/*********************************************************************************************
2. Global Styles
*********************************************************************************************/
body {
background: #fff;
color: #222;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
overflow-x: hidden;
line-height: 1.5;
margin: 0;
padding: 0;
min-width: 980px;
}
/* Links */
a { color: #18629D; text-decoration:none; }
a:hover { text-decoration:underline;}
a:focus { outline: none; }
a:hover, a:active { outline: none; }
p { margin: 0 0 15px; padding: 0; }
.wrap {
margin: 0 auto;
width: 980px;
}
/*********************************************************************************************
3. Header ------------------------- header.php
*********************************************************************************************/
#navbar {
background: #282727;
color:#fff;
margin-bottom:30px;
}
#navbarsecond {
background: #fff url("images/secondnav.gif") repeat-x 0 0;
margin-bottom: 34px;
}
#logo {
float:left;
padding:0 0 30px;
}
#logo a {
color:#525252;
}
#logo a:hover {
color:#3c3c3c;
text-decoration:none;
}
.adv {
float:right;
margin: 0 0 15px;
}
/* Search Form */
#searchform {
float: right;
margin:0 0 15px;
height: 33px;
width: 278px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background: #f5f5f5;
border:1px solid #EFEFEF;
}
#s {
outline: none;
background: #f5f5f5;
border: none;
color: #bababa;
line-height: 26px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
height: 26px;
width: 245px;
float:left;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
padding:3px 0 0 5px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
#searchsubmit {
float:left;
width:25px;
height: 26px;
background: url("images/s.gif") no-repeat 0 2px;
text-indent:-2999px;
}
/* Dropdown menu */
.dropdown, .dropdown * { margin: 0; padding: 0; list-style: none; }
.dropdown { line-height: 1.0; }
.dropdown ul { position: absolute; top: -999em; width: 160px; /* left offset of submenus need to match (see below) */ }
.dropdown ul li { width: 100%; }
.dropdown li:hover { visibility: inherit; /* fixes IE7 'sticky bug' */ }
.dropdown li { float:left; display:inline; position: relative; }
.dropdown a { position: relative; }
.dropdown li:hover ul,
.dropdown li.sfHover ul { left: 0; top:32px; /* match top ul list item height */ z-index: 99; }
ul.dropdown li:hover li ul,
ul.dropdown li.sfHover li ul { top: -999em; }
ul.dropdown li li:hover ul,
ul.dropdown li li.sfHover ul { left: 160px; /* match ul width */ top: 0; }
ul.dropdown li li:hover li ul,
ul.dropdown li li.sfHover li ul { top: -999em; }
ul.dropdown li li li:hover ul,
ul.dropdown li li li.sfHover ul { left: 160px; /* match ul width */ top: 0; }
.dropdown {
float:left;
width: 100%;
}
.dropdown a {
padding: 8px 10px;
margin:0 5px 0 0;
text-decoration:none;
line-height:1.5;
font-size: 11px;
color: #c0c0c0;
display:block;
}
.dropdown a:hover {
background:#527AA4;
color:#fff;
}
.dropdown ul {
text-align: left;
margin: 0;
background:#527AA4;
border-top:none;
z-index:999;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-bottomleft: 3px;
-webkit-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
padding:5px 0 10px;
}
.dropdown ul ul {
top:0;
padding:0 0 10px;
}
.dropdown .current_page_item a,
.dropdown .current-cat a,
.dropdown .current-menu-item a,
.dropdown .current_page_item a,
.dropdown .current-cat a,
.dropdown .current-menu-item a {
outline:0;
color: #fff;
font-weight:bold;
}
.dropdown .current_page_item ul a,
.dropdown .current-cat ul a,
.dropdown .current-menu-item ul a,
.dropdown .current_page_item ul a,
.dropdown .current-cat ul a,
.dropdown .current-menu-item ul a {
outline:0;
font-weight:normal;
color:#c0c0c0;
}
.dropdown li ul li {
color:#fff;
float:left;
margin:0;
padding:0;
}
.dropdown li ul li a {
color:#fff;
margin:0;
padding:7px 10px;
font-size:11px;
}
.dropdown li:hover a {
color:#fff;
background:#527AA4;
}
.dropdown li:hover ul a {
color:#fff;
}
.dropdown li:hover li a:hover {
background:#3F6288;
}
.dropdown a.sf-with-ul {
min-width:1px;
}
#navbarsecond .dropdown a {
color: #5f5959;
font-size:13px;
padding:11px 10px;
}
#navbarsecond .dropdown a:hover {
background:none;
color:#333;
}
#navbarsecond .dropdown ul {
background:#ecebeb;
}
#navbarsecond .dropdown li ul li {
color:#fff;
}
#navbarsecond .dropdown li ul li a {
font-size:11px;
color:#fff;
}
#navbarsecond .dropdown li:hover a {
color:#333;
background:none;
}
#navbarsecond .dropdown li:hover ul a {
color:#222;
}
#navbarsecond .dropdown li:hover li a:hover {
background:#DADBDC;
}
/*********************************************************************************************
4. Homepage ------------------------- index.php
*********************************************************************************************/
#content {
float: left;
width: 650px;
}
/* Featured Slider -- wpzoom-slider.php */
#slider { margin: 0 0 25px; position: relative; width: 620px; padding: 0 15px; background: #1B1A1A; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; }
#slider h3 { font-weight: bold; font-size: 18px; border-bottom: 3px solid #232222; padding: 13px 0 9px; margin: 0; color: #fff; }
#slider .navi { width: 53px; height: 22px; position: absolute; right: 15px; top: 15px; }
#slider .navi a { display: block; text-indent: -2999px; background: url(images/arrow_feat.png) no-repeat; cursor: pointer; height: 22px; width: 25px; }
#slider .navi a:hover { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=90); opacity: 0.6; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; }
#slider .navi a.backward { float: left; background-position: 0 0; }
#slider .navi a.forward { float: right; background-position: -27px 0; }
#slider #slides { width: 305px; display: block; overflow: hidden; float: left; padding: 15px 15px 15px 0; border-right: 1px solid #232222; }
#slider .notice { color: #999; }
#slider #slides .slide_content { margin: 10px 0 0; overflow: hidden; font-size: 12px; color: #A3A0A0; }
#slider #slides .slide_content p { margin-bottom: 5px; }
#slider #slides .slide_content .comments a { background: url(images/comments.png) no-repeat left center; padding: 0 0 0 16px; color: #787878; font-size: 11px; }
#slider #slides h2 { line-height: 1.3; margin: 0 0 7px; }
#slider #slides h2 a { color: #fff; font-size: 20px; font-weight: bold; }
#slider #slides .slides li { list-style-type: none; display:none; }
#slider_nav { position: relative; width: 299px; overflow: hidden; float: right; padding: 15px 0 0; }
#slider_nav p { margin: 1px 0 0; font-size: 11px; color: #e6e6e6; }
#slider_nav ul { list-style: none; }
#slider_nav li a { float: left; padding: 8px 10px 8px 10px; margin: 0; font-size: 13px; font-weight: bold; width: 280px; border-bottom: 1px solid #232222; line-height: 1.3; color: #D6D5D5; }
#slider_nav li a span { overflow: hidden; display: block; font-size: 11px; font-weight: normal; color: #787878; margin-bottom: 2px; }
#slider_nav li:hover { cursor: pointer; }
#slider_nav li img { padding: 0 10px 0 0; float: left; }
#slider_nav ul.pagination li:last-child { border-bottom: none; }
#slider_nav ul.pagination li a:hover, #slider_nav ul.pagination li a.current { z-index: 11; text-decoration: none; background: #121212; color: #fff; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0; border-bottom:1px solid #3A3535;}
#slider_nav ul.pagination li a:hover span, #slider_nav ul.pagination li a.current span { color: #fff; }
/* Featured Category Widget */
.category-widget { margin: 30px 0; }
.category-widget h2 { border-top: 4px solid #ececec; border-bottom:2px solid #ececec; color: #3f3d3d; font-size: 18px; font-weight: bold; line-height: 38px; margin: 25px 0 15px 0; }
.category-widget h2 a { color: #3f3d3d; }
.category-widget .slide { float: left; width: 300px; overflow: hidden; height: 236px; }
.category-widget .category-big { float: left; width: 300px; }
.category-widget ul { list-style: none; }
.category-widget h3 { font-size: 14px; font-weight: bold; }
.category-widget .item { overflow: hidden; }
.category-widget .active h3 a { color: #fff; }
.category-widget .active p { color: #e9e9e9; }
.category-widget .tabs { float: right; width: 350px;}
.category-widget .tabs li { float: left; overflow: hidden; border-bottom: 1px solid #e8e8e8; }
.category-widget .tabs a { padding: 8px 10px 15px 15px; width: 325px; height: 55px; display: block; line-height: 1.3; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0; }
.category-widget .tabs li a:hover { text-decoration: none; }
.category-widget .tabs li a.current { background: #18629D; color: #fff; }
.category-widget .tabs p { font-size: 11px; color: #848282; }
.category-widget .tabs li a.current p { color: #fff; }
.category-widget .tabs li img { float: left; position: relative; padding: 5px 10px 0 0; }
.category-widget li:hover { cursor: pointer; }
.category-widget p { font-size: 11px; line-height: 1.4; margin: 0; padding: 0; }
/* Video Slider -- video-slider.php */
.video_slider { width: 930px; float: left; margin: 0 0 15px; color: #838383; font-size: 13px; padding: 15px 25px 25px; position: relative; background: #1B1A1A; }
.video_slider h3 { margin: 0 0 15px; font-weight: bold; font-size: 16px; color: #fff; }
.video_slider h4 { font-size: 22px; font-weight: bold; line-height: 35px; }
.video_slider p { color: #838383; line-height: 22px; font-size: 12px; }
.video_slider #panes { position: relative; overflow: hidden; width: 580px; float: left; }
.video_slider #panes h4 a { color: #fff; font-weight: bold; font-size: 20px; }
.video_slider #panes div { overflow: hidden; z-index: 100; display: none; font-size: 11px; color: #fff; line-height: 1.3; }
.video_slider #panes .active { display: block; }
.video_slider #panes a:hover { text-decoration: underline; }
.video_slider a.browse { width: 27px; height: 27px; bottom: 20px; display: block; position: absolute; cursor: pointer; z-index: 103; text-indent: -2000px; background: url("images/arrow_video.png") no-repeat 0 0; }
.video_slider a.browse:hover { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=90); opacity: 0.6; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; }
.video_slider a.right { right: 145px; background-position: -32px 0; }
.video_slider a.left { right: 178px; background-position: 0 0; }
.video_slider .latest_videos { float: right; width: 330px; margin: 0; height: 466px; }
.video_slider .scrollable a { font-weight: bold; line-height: 1; font-size: 11px; }
.video_slider div.scrollable { position: relative; z-index: 999; overflow: hidden; height: 445px; }
.video_slider .latest_videos a { font-size: 15px; font-weight: bold; color: #fff; line-height: 1.5; cursor: pointer; display: block; }
.video_slider .latest_videos a:hover { text-decoration: none; }
.video_slider .latest_videos span { color: #7f7f7f; font-size: 11px; font-weight: bold; display: block; margin: 5px 0 0; }
.video_slider .latest_videos .item_info { overflow: hidden; }
.video_slider div.scrollable ul.items { height: 20000em; left: 0; position: absolute; }
.video_slider .scrollable li { float: left; width: 330px; list-style-type: none; display: block; margin: 0 0 15px; position: relative; }
.video_slider .scrollable li.active, .scrollable li:hover { opacity: 1; }
.video_slider .scrollable img { margin: 0 10px 2px 0; display: block; float: left; cursor: pointer; }
.video_slider .scrollable li i { display: none; }
.video_slider .scrollable li.active i { display: block; position: absolute; height: 95px; width: 145px; top: 5px; left: 0; cursor: pointer; background: url(images/play.png) no-repeat; }
.video_slider .scrollable li:hover i { display: block; position: absolute; height: 95px; width: 145px; top: 5px; left: 0; cursor: pointer; background: url(images/play.png) no-repeat; -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=90)"; filter: alpha(opacity=90); opacity: 0.6; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; }
/* Carousel -- wpzoom-carousel.php */
#featured { width: 980px; position: relative; float: left; margin: 0 0 20px; }
#featured h3 { border-bottom: 1px solid #ececec; color: #3f3d3d; font-size: 18px; font-weight: bold; line-height: 38px; margin: 25px 0 15px 0; }
#featured ul li { display: inline; float: left; margin: 0; padding: 0 4px 0 0; }
#featured li a { font-weight: bold; width: 180px; display: block; }
#featured .thumb img { margin-bottom: 4px; }
#featured .jcarousel-clip { width: 980px; }
#featured .jcarousel-item { width: 196px; overflow: hidden; }
#featured .jcarousel-prev { position: absolute; top: 33px; right: 29px; width: 25px; height: 22px; cursor: pointer; background: url(images/arrow_feat.png) no-repeat; background-position: 0 0; }
#featured .jcarousel-next { position: absolute; top: 33px; right: 0; width: 25px; height: 22px; cursor: pointer; background: url(images/arrow_feat.png) no-repeat; background-position: -27px 0; }
#featured .jcarousel-prev:hover, .jcarousel-next:hover { -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); opacity: 0.8; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; }
/*********************************************************************************************
5. Archive posts styling ------------------------- loop.php
*********************************************************************************************/
.recent-post {
border-bottom: 1px solid #ececec;
margin-bottom: 20px;
padding-bottom: 25px;
}
.recent-post .post-thumb {
margin: 0 15px 0 0;
float:left;
position:relative;
}
h1.archive_title, h3.archive_title {
border-top: 4px solid #ececec;
border-bottom: 2px solid #ececec;
font-size: 18px;
font-weight: bold;
line-height: 1.3;
margin: 0 0 15px 0;
padding:8px 0;
color: #3f3d3d;
}
.recent-post h2 {
line-height: 1.2;
margin-bottom:5px;
}
.recent-post h2 a {
font-size: 21px;
}
.recent-post .post-content {
padding: 0;
overflow: hidden;
}
.recent-post .entry p {
font-size:12px;
line-height:1.7;
}
.recent-meta {
margin:0 0 5px;
font-size:11px;
color:#656565;
}
.recent-meta span {
margin-right:9px;
}
/* Read more button */
a.more-link { display:block; margin:5px 0 0; font-size:12px; text-align:left; font-weight:bold; }
/*********************************************************************************************
6. Single Posts Styling --------------------------------- single.php, page.php
*********************************************************************************************/
.entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6 {
margin-bottom: 12px;
line-height:1.3;
}
.entry p { margin-bottom: 14px; }
.entry img { margin-bottom:10px; }
.entry img.alignnone,
.entry img.aligncenter,
.entry img.alignleft,
.entry img.alignright {
margin-bottom: 10px;
max-width: 650px;
width:auto;
height:auto;
}
.entry ul, .entry ol { margin: 0 0 14px 14px; }
.entry li ul, .entry li ol { margin-bottom: 0; }
.entry li { list-style-position: inside; }
.entry ul li { list-style-type: square; }
.entry ol li { list-style-type: decimal; }
.entry blockquote {
color:#8E8E8E;
border-left: solid 3px #ececec;
padding:0 15px;
margin: 10px;
}
h1.title {
margin:0 0 10px;
line-height:1.3;
font-size:28px;
font-weight:bold;
}
h1.title a {
color:#222;
}
.post-cover {
margin:0 0 15px;
font-size:12px;
color:#999;
}
.post-cover p {
margin:5px 0;
}
.post-meta {
padding:8px 0 8px 15px;
height:20px;
background:#ececec;
border-top:1px solid #d2d3dc;
margin:0 0 15px;
font-size:11px;
color:#656565;
}
.meta-author {
border-bottom:1px solid #ececec;
padding:0 0 10px;
margin:0 0 15px;
font-size:12px;
color:#999;
}
.meta-author a {
font-weight:bold;
}
/* Related Posts */
.related_posts {
margin:0 0 15px;
}
.related_posts h3 {
margin:0 0 15px;
}
.related_posts ul {
margin-left:-20px;
}
.related_posts ul li {
list-style-type:none;
width:44%;
padding:0 0 10px 20px;
margin:0 0 10px 20px;
float:left;
border-bottom: 1px solid #ececec;
background:url(images/related.png) no-repeat left 6px;
}
/* Sharing buttons */
.share_box {
float:right;
width:295px;
text-align:right;
}
.share_box .share_btn { display:inline; }
/* Tags */
.tag_list { font-size:12px; margin:0 0 12px; color:#63676A; }
.tag_list a { margin:0 10px 0 0; font-family:Georgia, Times New Roman, Times, serif; color:#928f8f;}
.tags_wrap { overflow:hidden; }
/* [gallery] shortcode */
.entry .gallery .gallery-item { max-width:142px; display: -moz-inline-stack; display: inline-block; vertical-align: top; zoom: 1; *display: inline; margin: 10px; }
.entry .gallery { clear: both; margin: auto; text-align: center; }
.entry .gallery a:hover { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";filter: alpha(opacity=90); opacity: 0.6; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out;}
.gallery img { width:142px; height:auto; }
/* Images align */
.entry .aligncenter, div.aligncenter { display: block; clear:both; margin-left: auto; margin-right: auto; }
.alignleft, .entry .alignleft { float: left; margin-right:15px; }
.alignright, .entry .alignright { float: right; margin-left:15px; }
/* Caption for images */
.entry .wp-caption { max-width: 100% !important; text-align:center; }
.entry .wp-caption img { background:none; margin:0; border:0 none; max-width:100%; width:auto; height:auto;}
.entry .wp-caption-text, .gallery-caption { color:#A7A3A3; font-size:11px; margin:0; padding:4px 0 0; text-align:center; }
.entry .wp-caption.aligncenter { margin:0 auto 15px; }
img.wp-smiley { border: none; padding: 0; }
.thumbnails { clear: both; float: left; font-size: 11px; line-height: 1.6em; }
.thumbnails img { height: 100px; margin:0 20px 15px 0; width: 100px; }
.thumbnails .active img { border:3px solid #FFCB65; }
/* Template: Sidebar on the left */
.side-left #content { float: right; border-right: 0; }
.side-left #sidebar { float: left; }
/* Template: Full-width */
.full-width #content { width: 980px; }
.full-width h1.archive_title { width:980px; }
.full-width .entry, .page .entry { float: none; display: block; padding-right: 0; }
.full-width .entry img { max-width: 980px; }
.full-width .entry .wp-caption { max-width:980px; text-align:center;}
/* Template: Archives */
.post .col_arch { float: left; width: 100%; margin: 10px 0; border-bottom: 1px solid #ececec; padding-bottom: 15px; }
.post .col_arch .left { display:block; text-transform: uppercase; font-size:12px; font-weight:bold; }
.post .col_arch .right { float: left; margin-top:12px; }
.post .col_arch .right ul {margin-left:0; }
.post .col_arch .right ul li a { font-weight: normal; }
.post .col_arch .right ul li { width: 30%; float: left; margin: 0 10px 5px 0; list-style-type: none; }
.post .col_arch:last-child { border-bottom:none; }
/*********************************************************************************************
7. Sidebar & Widgets ------------------------- sidebar.php
*********************************************************************************************/
#sidebar {
float: right;
width: 300px;
overflow:hidden;
font-size:13px;
color:#5C5C5C;
}
#sidebar .widget {
margin-bottom:20px;
}
.widget h3 { color: #3f4247; font-size: 18px; font-weight: bold; margin:0 0 5px;}
.widget { float: left; line-height: 1.5; width: 100%; }
.widget ul { clear: both; margin: 5px 0; line-height: 1.7; }
.widget ul li { list-style-type: none; }
.widget ul ul { margin: 0; padding: 0; border-top: none; }
.widget ul ul li { border: none; }
.widget a { font-weight: bold; }
.widget #cat, .widget select { width: 100%; background: #F7F7F7; border: 1px solid #cdcfd4; color: #333333; display: inline; padding: 5px; line-height: 1.5; clear: both; float: left; }
.side_ad { text-align: center; margin:0 0 10px; }
/* Category Widget */
.widget_categories ul li { color: #8B8A8A; text-align: right; font-weight: normal; padding: 2px 0; clear: both; }
.widget_categories ul li li { padding-left:10px; }
.widget_categories ul li a { text-align: left; float: left; font-weight: bold; }
/* Video Widget */
.wpzoom_media .open .description { margin: 10px 0 5px; font-size: 12px; line-height: 16px; }
.wpzoom_media .hide { display: none; }
.wpzoom_media li { border-bottom: 1px dotted #ddd; list-style-type: none; font-size: 14px; padding: 8px 0; line-height: 20px; }
.wpzoom_media li a { font-weight: normal; }
.wpzoom_media li a.active { font-weight: bold; }
/* Recent Comments */
.recent-comments-list .avatar { margin-right: 12px; float: left;}
.recent-comments-list li { padding: 6px 0 10px; margin:0 0 5px; border-bottom: 1px solid #eee; line-height:1.4; font-size:11px; }
.recent-comments-list li a { font-size:12px; }
/* Recent Posts */
.widget .feature-posts-list br {display: none;}
.widget .feature-posts-list img { margin: 4px 12px 5px 0; float: left;}
.widget .feature-posts-list small { font-size: 12px; color: #8B96A0; margin: 2px 0 4px; display: block; }
.widget .feature-posts-list .post-excerpt { display: block;}
.widget .feature-posts-list li { padding: 6px 0; margin:0; border-bottom:1px solid #ececec; line-height:1.4; }
.widget .feature-posts-list li a { font-weight:bold; }
/* Flickr widget */
.widget .flickr_badge_image {margin-right: 10px; margin-bottom: 12px; float: left; }
.widget .flickr_badge_image img { width: 64px; height: 64px; }
.widget .flickr_badge_image img:hover { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";filter: alpha(opacity=60); opacity: 0.6; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out;}
/* Social widget */
.wpzoomSocial {margin:10px 0;}
.wpzoomSocial li {float:left; margin:0 0 15px 2px;width:49%;}
.wpzoomSocial li img {margin:0 7px 0 0; float:left;}
.wpzoomSocial li a { font-size:13px;}
/* Twitter widget */
.widget .twitter-list li { font-family: Georgia, "Times New Roman", Times, serif; font-style: italic; padding: 0 0 7px; margin: 0 0 7px; }
.widget .twitter-list li a { font-weight: normal; }
.widget .twitter-list .twitter-timestamp { display: block; color: #727272; font-family: Arial, sans-serif; font-size: 10px; font-style: normal; text-align: right; }
.widget .follow-user { margin: 0; padding: 5px 0; }
/* Popular Posts Widget */
.popular-news .comments { color: #A9A9A9; }
.popular-news li { padding: 0 0 6px; }
/* Tag cloud Widget */
.widget_tag_cloud div a { padding: 0 3px; }
/* Calendar widget */
#wp-calendar {width: 100%; }
#wp-calendar caption { text-align: right; font-weight:bold; font-size: 12px; margin-top: 10px; margin-bottom: 15px; }
#wp-calendar thead { font-size: 10px; }
#wp-calendar thead th { padding-bottom: 10px; }
#wp-calendar tbody { color: #aaa; }
#wp-calendar tbody td { background: #EFEEEE; text-align: center; padding:8px;}
#wp-calendar tbody td:hover { background: #E8E8E8; }
#wp-calendar tbody .pad { background: none; }
#wp-calendar tfoot #next { font-size: 10px; text-transform: uppercase; text-align: right; }
#wp-calendar tfoot #prev { font-size: 10px; text-transform: uppercase; padding-top: 10px; }
/* Archive widget */
.widget_archive li { width:49%; float:left; display:block; margin:0; padding:0 0 6px;}
/* Tabbed Widget */
.tabberlive .tabbertabhide { display: none; }
.tabberlive h3 { display: none; }
ul.tabbernav li { float: left; margin: 0 7px 0 0; padding: 0; height: 29px; line-height: 29px; overflow: hidden; position: relative; background: #343434; list-style-type: none; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; }
ul.tabbernav { margin: 0; padding: 1px 0; font: bold 12px; }
*html ul.tabbernav { padding: 2px 0; /* ie6 only */ }
*+html ul.tabbernav { padding: 2px 0; /* ie7 only */ }
ul.tabbernav li { list-style: none; display: inline; }
ul.tabbernav li a { text-decoration: none; /* inactive tabs */ color: #fff; display: block; font-size: 11px; font-weight: bold; padding: 0 10px; outline: none; }
ul.tabbernav li.tabberactive { background: #fff; /* active tab */ }
ul.tabbernav li.tabberactive a { color: #000; }
ul.tabbernav { margin: 0 0 5px; padding:25px 10px 0; background:#1B1A1A; list-style: none; height: 29px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px;
-webkit-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; }
html .tabbertab ul { margin: 0; }
.tabberlive .tabbertab { padding: 5px 0 0; float: left; width: 300px; }
.tabbertab h2.widgettitle { display: none; }
/*********************************************************************************************
8. Comments ------------------------- comments.php
*********************************************************************************************/
#comments { clear: both; }
#comments h3 { color:#373737; margin:0 0 15px; font-weight:bold; }
#comments .navigation { padding: 0 0 18px 0; }
h3#reply-title { font-size: 20px; margin: 18px 0; color:#373737;}
.commentlist { list-style: none; margin: 0; }
.commentlist li.comment { border-bottom: 1px solid #dedede; font-size:12px; line-height: 1.7; margin: 0 0 24px 0; padding: 0 0 0 76px; position: relative; }
.commentlist li:last-child { border-bottom: none; margin-bottom: 0; }
#comments .comment-body ul, #comments .comment-body ol { margin-bottom: 18px; }
#comments .comment-body p:last-child { margin-bottom: 6px; }
#comments .comment-body blockquote p:last-child { margin-bottom: 24px; }
.commentlist ol { list-style: decimal; }
.commentlist .avatar { position: absolute; top: 4px; left: 0; }
.comment-author { margin-bottom:3px; }
.comment-author cite { color: #B1B1B1; font-weight: bold; font-style:normal; font-size:14px; }
.comment-author .says { display:none; }
.comment-meta { font-size: 12px; margin: 0; float: right; }
.comment-meta a:link, .comment-meta a:visited { color: #888; text-decoration: none; }
.comment-meta a:active, .comment-meta a:hover { color: #333; }
.reply { font-size: 12px; padding: 0 0 24px 0; }
.commentlist .children { list-style: none; margin: 0; }
.commentlist .children li { border: none; margin: 0; }
.nopassword, .nocomments { display: none; }
#comments .pingback { border-bottom: 1px solid #dedede; margin-bottom: 18px; padding-bottom: 18px; }
.commentlist li.comment+li.pingback { margin-top: -6px; }
#comments .pingback p { color: #888; display: block; font-size: 12px; line-height: 18px; margin: 0; }
#comments .pingback .url { font-size: 13px; font-style: italic; }
.comment-notes { display:none; }
/* Comments form */
#respond { margin: 24px 0; overflow: hidden; position: relative; }
#respond p { margin: 0; }
#respond .comment-notes { margin-bottom: 1em; }
.form-allowed-tags { line-height: 1em; }
.children #respond { margin: 0 48px 0 0; }
.commentlist #respond { clear: both; display: block; }
#comments-list #respond { margin: 0 0 18px 0; }
#comments-list ul #respond { margin: 0; }
#cancel-comment-reply-link { font-size: 12px; font-weight: normal; line-height: 18px; }
#respond .required_lab { color: #FF6565; font-weight: bold; float: right; }
#respond label { color: #6A6A6A; font-size: 12px;}
#respond input { margin: 0 0 9px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; }
#respond textarea { width: 96%; height: 145px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; }
#respond .form-allowed-tags { color: #888; font-size: 12px; line-height: 18px; display:none; }
#respond .form-allowed-tags code { font-size: 11px; }
#respond .form-submit { text-align:left; margin-top:10px; }
#respond .form_fields { float: left; width: 36%; margin-right: 5%; }
#respond .form_fields p { margin-bottom:7px; }
#respond .form_fields input { width:100%; }
#respond .comment-form-comment { width: 80%; float: left; }
#respond .form_fields input, #respond textarea { clear: both; display: block; font-size: 13px; padding: 8px 6px; margin: 3px 0 0; }
#respond input[type="submit"] { background: #eee; /* Old browsers */ background: #eee -moz-linear-gradient(top, rgba(255,255,255,.2) 0%, rgba(0,0,0,.2) 100%); /* FF3.6+ */ background: #eee -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.2)), color-stop(100%,rgba(0,0,0,.2))); /* Chrome,Safari4+ */ background: #eee -webkit-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Chrome10+,Safari5.1+ */ background: #eee -o-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Opera11.10+ */ background: #eee -ms-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* IE10+ */ background: #eee linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* W3C */ border: 1px solid #aaa; border-top: 1px solid #ccc; border-left: 1px solid #ccc; padding: 4px 12px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; color: #444; display: inline-block; font-size: 11px; font-weight: bold; text-decoration: none; text-shadow: 0 1px rgba(255, 255, 255, .75); cursor: pointer; margin-bottom: 20px; line-height: normal; padding: 5px 10px; font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }
#respond input[type="submit"]:hover { color: #222; background: #ddd; /* Old browsers */ background: #ddd -moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); /* FF3.6+ */ background: #ddd -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.3)), color-stop(100%,rgba(0,0,0,.3))); /* Chrome,Safari4+ */ background: #ddd -webkit-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Chrome10+,Safari5.1+ */ background: #ddd -o-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Opera11.10+ */ background: #ddd -ms-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* IE10+ */ background: #ddd linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* W3C */ border: 1px solid #888; border-top: 1px solid #aaa; border-left: 1px solid #aaa; }
#respond input[type="submit"]:active { border: 1px solid #666; background: #ccc; /* Old browsers */ background: #ccc -moz-linear-gradient(top, rgba(255,255,255,.35) 0%, rgba(10,10,10,.4) 100%); /* FF3.6+ */ background: #ccc -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.35)), color-stop(100%,rgba(10,10,10,.4))); /* Chrome,Safari4+ */ background: #ccc -webkit-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Chrome10+,Safari5.1+ */ background: #ccc -o-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Opera11.10+ */ background: #ccc -ms-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* IE10+ */ background: #ccc linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* W3C */ }
/*********************************************************************************************
9. Footer ------------------------- footer.php
*********************************************************************************************/
#footer {
font-size:12px;
border-top: 1px solid #ececec;
padding:15px 0 0;
}
#footer div.column {
display: inline;
float: left;
margin-right: 40px;
width: 300px;
}
#footer div.last {
margin-right: 0;
}
#footer .widget-area {
padding:0 0 15px;
margin:0 0 15px;
border-bottom:1px solid #ececec;
}
#footer .column .widget {
width:300px;
float:left;
line-height:1.7;
overflow:hidden;
margin-bottom:15px;
}
.copyright { font-size: 11px; min-height:80px; width: 100%; }
.copyright .left { margin: 10px 0; float: left; }
.copyright .right { float: right; margin: 10px 0;}
p.wpzoom { display: inline; float: right; line-height: 16px; }
p.wpzoom img { display: inline; float: right; padding: 0 0 0 2px; }
/*********************************************************************************************
10. Media Queries
*********************************************************************************************/
/* Tablet Landscape */
@media screen and (max-width: 980px) {
body { min-width:100%; }
.wrap { width: 90%; padding: 0 5%; }
#content { width:100%;}
#slider {width:96%; padding:0 2%; }
#slider #slides { width:49%; padding-left:1%; }
#slider #slides li img { width:100%; }
#slider_nav {width:45%; }
#slider_nav li a { width:96%; }
.home_widgets { margin-left:-3%; margin-bottom:25px; }
.category-widget { width:47%; margin:0 0 0 3%; float:left; }
.category-widget .slide { width:45%; }
.category-widget .slide img { width:100%; }
.category-widget .tabs { width:55%; }
.category-widget .tabs li { width:100%;}
.category-widget .tabs a { width:98%; padding-left:1%; padding-right:1%;}
#sidebar { width:100%; margin-left:-2%;}
#sidebar .widget {width:48%; margin-right:2%; float:left; }
.video_slider {width:96%; padding-left:2%; padding-right:2%; }
.video_slider #panes { width:65%; }
.video_slider .latest_videos {width:33%; }
.video_slider .scrollable li { width:100%; }
.cover { position: relative; padding-bottom: 56.25%; display:block; padding-top: 30px; height: 0; overflow: hidden; width: 100%; max-width: 100%; }
.cover iframe,
.cover object,
.cover embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
#featured { width:100%;}
#featured .jcarousel-clip { width:100%; }
#featured ul li { margin-right:2%; }
.post-cover img { max-width:100%; }
.entry img { max-width:100%; height:auto;}
/* Template: Full-width */
.full-width #content { width: 100%; }
.full-width h1.archive_title { width:100%; }
.full-width .entry img { max-width: 100%; height:auto;}
.full-width .entry .wp-caption { max-width:100%; }
#footer div.column { margin-right: 2%; width: 31%; }
#footer .column .widget { width:100%; }
#featured .jcarousel-list { height: 162px !important; overflow:hidden; }
#featured .jcarousel-item img { max-width: 100%; }