forked from annecamille/rede_saude_cultura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
4767 lines (4600 loc) · 119 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: Saúde e Cultura
Description: Um Subtema com barra de navegação de usuário na esquerda e com 3 colunas baseado no buddyboss
Theme URI: https://github.com/albertosouza/rede_saude_cultura
Version: v1.0.0
Author: Alberto Souza, Anne Camille
Theme URI:
Version: v0.0.1
Version: v0.0.6
Author: NEXT
Author URI: http://next.icict.fiocruz.br
Tags: buddypress, two-columns, right-sidebar, fixed-width, flexible-width
Template: buddyboss
*/
/*--------------------------------------------------------------
Este arquivo foi retirado do BuddyBoss para melhorar o desempenho e por termos modificado muito o tema
----------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset - Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
2.0 - Structural
2.1 - Content
2.2 - Header
2.3 - Footer - Sticky Footer by Ryan Fait: http://ryanfait.com/
2.4 - Sidebars
2.4.1 - Homepage Sidebars
2.4.2 - Logged In Sidebar
2.4.3 - Logged Out Sidebar
2.4.4 - Home Content areas
3.0 - Non-structural
3.1 - Text
3.2 - Colors
4.0 - Navigation - Superfish dropdown styles: http://users.tpg.com.au/j_birch/plugins/superfish/
4.1 - Pagination
5.0 - WordPress
5.1 - Images
5.2 - Gallery
5.2.1 - BuddyBoss Gallery
5.3 - Comments
6.0 - BuddyPress
6.1 - Activity (Wall)
6.1.1 - Activity Listing
6.1.2 - Activity Comments
6.1.3 - Activity Upload Picture
6.2 - Directories - Activity, Members, Groups, Forums, Blogs
6.3 - Error / Success Messages
6.4 - Forms
6.5 - Ajax Loading
6.6 - Tables
6.7 - Group Forum Topics
6.8 - Headers - Activity, Members, Groups, Forums, Blogs
6.9 - Lists - Activity, Members, Groups, Forums, Blogs
6.10 - Tabs - Activity, Members, Groups, Forums, Blogs
6.11 - Item Body - Activity, Members, Groups, Forums, Blogs
6.12 - Buttons
6.13 - Private Messaging Threads
7.0 - Plugins
7.1 - BP Profile Search - http://buddypress.org/community/groups/bp-profile-search/
7.2 - BP Gallery
7.3 - BuddyPress Links
7.4 - Group Email Subscriptions
7.5 - U Forum Attachments
7.6 - Gravity Forms
7.7 - s2Member
7.8 - Subscribe to Comments
7.9 - WPMU Dev Facebook
7.10 - BuddyPress Activity Plus
7.11 - Fancebox lightbox
7.12 - bbPress
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 - Reset default browser CSS v1.0
--------------------------------------------------------------*/
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,font,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{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{background:#fff;line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}a img{border:0}
/*--------------------------------------------------------------
2.0 - Structural
--------------------------------------------------------------*/
body {
background: #fff url( ./_inc/images/body_bg.png ) top repeat-x;
font-size: 12px;
line-height: 18px;
color: #666666;
position: relative;
margin: 0 auto;
padding-top: 0 !important; /* Remove the top padding space for the BuddyBar in this theme */
}
body.buddyboss-activity-ajax {
background: #fff;
}
#wrapper {
width: 1000px;
padding: 0 5px 0 6px;
}
div#container {
position: relative;
width: 100%;
background: #fff;
clear: left;
overflow: hidden;
}
body.activity-permalink div#container {
background: none;
border: none;
}
/*--------------------------------------------------------------
2.1 - Content
--------------------------------------------------------------*/
div#content {
float: left;
width: 763px;
}
div#content_inicial {
float: left;
width: 100%;
background: #FFFFFF;
}
div#content .left-menu, div#content_inicial .left-menu {
float: left;
width: 170px;
}
div#content .main-column, div#content_inicial .main-column {
margin-left: 190px;
}
div#content .padder, div#content_inicial .padder { /* Full Width Layout */
margin-right: 0;
padding: 0;
position: relative;
min-height: 400px;
}
div#content.three_column, div#content_inicial.three_column .padder { /* Left Sidebar Layout */
width: 570px;
}
div#content.full-width {
width: 100%;
background: #FFFFFF;
}
div#espaco-01 {
width: 100%;
height: 240px;
margin: 20px 0;
}
#home-content-top h3.widgettitle-home-facebook, #home-content-top h3.widgettitle-home-twitter, div#espaco-01 .box-login {
width: 230px;
height: 140px;
float: left;
margin: 0 8px;
background: #F7F7F7;
border: 0px solid #000;
}
#home-content-top{
width: 236px;
height: 230px;
float: left;
margin: 0 6px 10px 6px;
background: #F7F7F7;
overflow: hidden;
border: 0px solid #000;
}
#home-content-top ul{
margin: 0;
font-size: 11px;
}
#home-content-top ul li{
border-bottom: 1px solid #ECECEC;
}
#home-content-top ul li a{
color: #DF912D;
}
h4.widgettitle-home {
font-size: 14px;
height: 25px;
color: #FFF;
display: block;
text-transform: uppercase;
padding: 5px 0 0 35px;
margin: 0 0 8px 0;
border: 0px solid #000;
}
span.rss-date {
display: block;
font-size: 9px;
color: #B6B6B6;
}
#loginwithajaxwidget-2 h4.widgettitle-home {
text-shadow: 1px 1px 0 #B1B1B1;
background: #DADADA url('./_inc/images/icones-home.png') no-repeat 0 -60px;
}
#tweetblender-2 h4.widgettitle-home {
text-shadow: 1px 1px 0 #2193D3;
background: #81c6f9 url('./_inc/images/icones-home.png') no-repeat 0 -30px;
}
div#rss-2 h4 a.rsswidget {
color: #FFF;
}
div#rss-2 h4 {
text-shadow: 1px 1px 0 #C27819;
background: #F5A43C url('./_inc/images/icones-home.png') no-repeat 0 -90px;
}
div#rss-2 h4:first-child a img{
display: none;
}
h4.widgettitle-face {
text-shadow: 1px 1px 0 #1D52C2;
background: #447CF3 url('./_inc/images/icones-home.png') no-repeat;
font-size: 14px;
height: 25px;
color: #FFF;
display: block;
text-transform: uppercase;
padding: 5px 0 0 35px;
margin: 0 0 8px 0;
border: 0px solid #000;
}
/*--------------------------------------------------------------
2.2 - Header
--------------------------------------------------------------*/
#header {
position: relative;
height: 126px;
margin-bottom: 30px;
z-index: 1000; /* Allows drop-down navigation to appear above #container */
}
#header .padder {
padding: 0;
}
#header div#logo {
left: 10px;
position: absolute;
top: 15px;
z-index: 1;
overflow: hidden;
}
div.description {
top: 120px;
font-weight: bold;
left: 60px;
position: absolute;
}
/*--------------------------------------------------------------
2.3 - Footer
--------------------------------------------------------------*/
* {
margin: 0; /* necessary for sticky footer */
}
html, body {
}
#wrapper {
min-height: 100%;
margin: 0 auto;
}
#footer {
color: #000;
background: #FFFFFF url(./_inc/images/bg_wrapper.jpg);
width: 1010px;
margin: 0 auto;
}
#colophon {
padding:25px 25px 27px 25px;
width: 950px;
background: url(./_inc/images/bg-footer.jpg) repeat-x;
margin: 0 0 0 6px;
}
#footer a {
color: #6dcfe8;
}
#footer #footer-links {
float: left;
border: 0px solid #000;
}
#footer #footer-links a{
color: #6dcfe8;
}
#footer #footer-links a:hover{
color: #989898;
text-decoration: none;
}
#footer #footer-links ul li {
display: inline;
margin: 0 10px 0 0;
}
#footer #credits {
margin: 0 0 10px 0;
color: #727272;
}
#footer #icones {
float: left;
margin: 0 0 0 50px;
border: 0px solid #000;
}
#footer #icones .next, #footer #icones .wordpress, #footer #icones .budypress{
border: 0px solid #000;
float: right;
width: 50px;
height: 50px;
}
#footer #icones a.next {
background: url(./_inc/images/footer-icones.jpg);
}
#footer #icones a.wordpress {
background: url(./_inc/images/footer-icones.jpg) 88px 0;
}
#footer #icones a.budypress {
background: url(./_inc/images/footer-icones.jpg) 46px 0;
}
#footer #icones a.next:hover {
background: url(./_inc/images/footer-icones.jpg) 0 49px;
text-decoration: none;
}
#footer #icones a.wordpress:hover {
background: url(./_inc/images/footer-icones.jpg) 88px 49px;
text-decoration: none;
}
#footer #icones a.budypress:hover {
background: url(./_inc/images/footer-icones.jpg) 46px 49px;
text-decoration: none;
}
.clr {
clear: both;
}
/*--------------------------------------------------------------
2.4 - Sidebars
--------------------------------------------------------------*/
div#sidebar {
float: left;
width: 240px;
margin-top: 50px;
position: relative;
z-index: 10;
}
div#sidebar .no-search {
margin-top: -50px; /* adjust for no search bar */
}
div#sidebar .padder {
padding: 0 0 0 20px;
}
div#sidebar .widget {
margin-bottom: 25px;
padding: 10px 12px;
overflow:hidden;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
div#sidebar .widget_recent_entries ul,
div#sidebar .widget_categories ul,
div#sidebar .widget_pages ul,
div#sidebar .widget_nav_menu ul {
list-style: square;
color: #b9d4e1;
padding-left: 12px;
clear: left;
* margin-top: -10px; /* IE7 */
}
.dir-search {
position: absolute;
top: 3px;
right: 0;
z-index: 10;
}
div#sidebar input#search-terms {
margin-bottom: 7px;
}
div#sidebar ul#bp-nav {
clear: left;
margin: 15px -16px;
}
div#sidebar ul#bp-nav li {
padding: 10px 15px;
}
div#sidebar h3.widgettitle,
#wp-calendar caption {
clear: left;
position: relative;
font-size: 14px;
}
#wp-calendar caption {
margin: -10px -12px 10px;
text-align: center;
}
div#sidebar .widget ul.item-list {
list-style: none;
margin-left: 0;
border-top: none;
}
div#sidebar .widget ul.item-list li {
border-top: 1px solid #d7d7d7;
border-bottom: none;
min-height: 30px;
}
div#sidebar .widget ul.item-list div.item-meta,
div#sidebar .widget ul.item-list div.item-content {
margin-left: 0;
}
div#sidebar .widget ul.children {
padding-left: 15px;
margin-top: 0;
}
div#sidebar .widget_search input[type=text] {
width: 110px;
padding: 2px;
}
div#sidebar ul.item-list img.avatar {
margin-right: 5px;
}
div#sidebar div.item-avatar img {
margin: 1px;
width: 44px;
height: 44px;
}
div#sidebar .avatar-block {
overflow: hidden;
clear: left;
}
div#sidebar ul.item-list div.item-title {
font-size: 12px;
}
div#sidebar div.item-options {
color: #c6d7e1;
font-size: 11px;
margin: -5px -12px 0;
padding: 0 5px 5px 5px;
clear:left;
text-align: center;
border: none;
}
div#sidebar div.item-meta, div#sidebar div.item-content {
margin-left: 38px;
font-size: 11px;
}
div#sidebar div.tags div#tag-text {
font-size: 1.4em;
line-height: 140%;
padding-top: 10px;
}
.widget-area .entry-meta {
font-size: 11px;
}
#wp_tag_cloud div {
line-height: 1.6em;
}
#wp-calendar {
width: 100%;
margin-top: 10px;
}
#wp-calendar thead {
font-size: 11px;
}
#wp-calendar th,
#wp-calendar td {
}
#wp-calendar tbody {
color: #aaa;
}
#wp-calendar tbody td {
background: #D7ECF7;
border: 1px solid #e9f4fa;
padding: 3px 0 2px;
color: #777;
text-align: center;
}
#wp-calendar tbody .pad {
background: none;
}
#wp-calendar tfoot #next {
text-align: right;
}
.widget_calendar h3.widgettitle {
display: none;
}
.widget_rss a.rsswidget {
color: #555;
}
.widget_rss a.rsswidget:hover {
color: #ff4b33;
}
.widget_rss .widget-title img {
width: 11px;
height: 11px;
}
.widget a.selected {
color: #555;
font-weight: bold;
}
.widget .item-options {
font-size: 12px;
}
.widget-error {
margin: 20px 0;
}
/*--------------------------------------------------------------
2.4.1 - Homepage Sidebars
--------------------------------------------------------------*/
div#sidebar.left_column,
div#sidebar.right_column {
margin-top: 6px;
}
div#sidebar.left_column {
margin-left: 0;
width: 194px;
margin-right: -194px;
}
div#sidebar.left_column .padder {
padding: 0 20px 20px 0;
}
div#sidebar.right_column {
margin-right: 0;
}
div#sidebar.right_column .padder {
padding: 0 0 20px 20px;
}
/*--------------------------------------------------------------
2.4.2 - Logged In Sidebar (Sidebar Me)
--------------------------------------------------------------*/
div#sidebar div#sidebar-me h4 {
font-size: 16px;
margin: 0 0 8px 0;
}
div#sidebar div#sidebar-me img.avatar {
margin: 0 -2px;
float: none;
}
div#sidebar div#sidebar-me ul#quicklinks {
padding: 0;
margin-top: 7px;
}
div#sidebar div#sidebar-me ul#quicklinks li a {
display: block;
font-weight: bold;
padding: 4px 0 5px 24px;
font-size: 13px;
background-position: 0 center;
background-repeat: no-repeat;
}
div#sidebar div#sidebar-me ul#quicklinks li#icon-profile a {
background-image: url( ./_inc/images/icon-profile.png );
}
div#sidebar div#sidebar-me ul#quicklinks li#icon-edit a {
background-image: url( ./_inc/images/icon-edit.png );
}
div#sidebar div#sidebar-me ul#quicklinks li#icon-avatar a {
background-image: url( ./_inc/images/icon-avatar.png );
}
div#sidebar div#sidebar-me ul#quicklinks li#icon-search a {
background-image: url( ./_inc/images/icon-search.png );
}
div#sidebar div#sidebar-me ul#quicklinks li a.last {
border-bottom: none;
}
/*--------------------------------------------------------------
2.4.3 - Logged Out Sidebar
--------------------------------------------------------------*/
div#sidebar #login-box {
padding-bottom: 14px;
}
/*--------------------------------------------------------------
2.4.4 - Home Content areas
--------------------------------------------------------------*/
div#home-content-left {
width: 485px;
float: left;
border: 0px solid #000;
}
div#home-content-right {
width: 485px;
float: right;
border: 0px solid #000;
}
h3.widgettitle-home {
color: #FFFFFF;
font-size: 16px;
background: #83D84A;
padding: 5px;
margin: 0 0 10px 0;
}
div#bp_swa_widget-2 h3.widgettitle-home {
color: #FFFFFF;
font-size: 16px;
background: #83D84A url('./_inc/images/icones-home-2.jpg') no-repeat 3px 0;
padding: 5px 5px 5px 40px;
margin: 0 0 10px 0;
}
div#wdg_specialrecentposts-2 h3.widgettitle-home {
color: #FFFFFF;
font-size: 16px;
background: #83D84A url('./_inc/images/icones-home-2.jpg') no-repeat 3px -35px;
padding: 5px 5px 5px 40px;
margin: 0 0 10px 0;
}
/*--------------------------------------------------------------
2.5 - Formulários
--------------------------------------------------------------*/
div#espaco-01 .box-login fieldset {
margin: 0 0 0 5px;
}
div#espaco-01 .box-login input.login {
width: 120px;
padding: 2px !important;
margin: 0 0 5px 0;
border-radius: 3px;
color: #7C7C7C;
border: 1px solid #CCC !important;
}
.box-login input[type="password"] {
background: #FFFFFF !important;
box-shadow: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
padding: 0 !important;
}
.box-login fieldset button.button.submit.user-submit {
border: none;
background: #73BE36;
padding: 3px;
font-size: 13px;
border-radius: 3px;
color: #FFFFFF;
margin: 0 0 0 2px;
}
.box-login fieldset button.button.submit.user-submit :hover {
background: #000;
}
/*--------------------------------------------------------------
3.0 - Non-structural
--------------------------------------------------------------*/
.clear {
clear: left;
}
p {
margin-bottom: 15px;
}
p:last-child {
margin-bottom: 0 !important;
}
hr {
background-color:#E7E7E7;
border:0 none;
clear:both;
height:1px;
margin: 20px 0;
}
/*--------------------------------------------------------------
3.1 - Text
--------------------------------------------------------------*/
/* Font for body text */
body {
font-family: "Helvetica Neue",arial,sans-serif;
}
body.directory div.item-list-tabs ul li a span,
div#object-nav.item-list-tabs li a span,
div#message-thread span.activity,
textarea,
form#whats-new-form h5 {
font-family: "Helvetica Neue",arial,sans-serif !important;
}
/* Font for Headings */
h1, h2, h3, h4, h5, h6,
.sf-menu,
div#item-nav,
div#item-body div#subnav.item-list-tabs ul li,
div.item-list-tabs ul li,
ul.button-nav li,
ul.item-list li div.item-title,
div#sidebar div#sidebar-me ul#quicklinks li a,
div#message-thread strong {
font-family: tahoma,verdana,arial,sans-serif;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 10px;
line-height: 1.5em;
color: #555;
font-weight: bold;
}
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
a {
text-decoration: none;
color: #497EA8;
}
a:hover, a:active {
text-decoration: underline;
}
a:focus {
outline: 1px dotted #ccc;
}
#content pre, #content kbd, #content tt, #content var {
font-size: 15px;
line-height: 21px;
}
big {
font-size: 18px;
}
del {
text-decoration: line-through;
}
ins {
background: #fff9db;
text-decoration: none;
}
sub {
top: .5ex;
}
sup {
bottom: 1ex;
}
sub,
sup {
height: 0;
line-height: 1;
position: relative;
vertical-align: baseline;
}
code {
font-family: Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;
color: #aaa;
}
/*--------------------------------------------------------------
3.2 - Colors
--------------------------------------------------------------*/
div#sidebar .widget,
.bp-widget h4,
body.activity-permalink .activity-list li .activity-content,
div#message-thread div.alt,
table.forum tr th#th-title, table.forum tr th#th-poster,
table.forum tr th#th-group, table.forum tr th#th-postcount,
table.forum tr th#th-freshness,
form#whats-new-form #whats-new-content #whats-new-textarea,
div#whats-new-pic-preview-inner,
div#item-body div#subnav.item-list-tabs,
body.directory div.item-list-tabs,
body.home-page div.item-list-tabs,
ul.button-nav, #bps_Form {
background-color: none;
}
div#item-body div#subnav.item-list-tabs ul li a,
div.item-list-tabs ul li a,
ul.button-nav li a {
background-color: #D8EAF3;
}
/*--------------------------------------------------------------
4.0 - Navigation
--------------------------------------------------------------*/
.sf-menu, .sf-menu * {
margin: 0;
padding: 0;
list-style: none;
}
.sf-menu {
line-height:1.0;
position: absolute;
bottom: -20px;
left: 0;
width: 100%;
font-weight: bold;
font-size: 15px;
border-left: 1px solid #686868; /* should match border-right for .sf-menu a */
}
.sf-menu ul {
position: absolute;
top: -999em;
width: 15em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
width: 100%;
}
.sf-menu li:hover {
visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
float: left;
position: relative;
}
.sf-menu a {
display: block;
position: relative;
border-left: 1px solid #808080;
border-right: 1px solid #616161;
border-bottom: 1px solid #414141;
line-height: 15px;
height: 15px;
padding: 11px 1em;
text-decoration: none;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
left: 0;
top: 2.5em; /* match top ul list item height */
z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
left: 15em; /* match ul width */
top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
left: 15em; /* match ul width */
top: 0;
}
.sf-menu li.current_page_item a,
.sf-menu li.selected a{
}
.sf-menu a, .sf-menu a:hover, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
color: #fff;
}
.sf-menu li li a {
border-left: 1px solid #616161;
border-right: 1px solid #616161;
border-bottom: 1px solid #616161;
height: auto; /* allows for long page titles */
}
.sf-menu li li, .sf-menu li.current_page_item li a {
background: #767676;
}
.sf-menu li li li {
background: #545454;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
outline: 0;
}
/*** arrows **/
.sf-menu a.sf-with-ul {
padding-right: 2.25em;
min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
a > .sf-sub-indicator { /* give all except IE6 the correct values */
top: .9em;
background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/*** apply hovers to modern browsers ***/
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
background-position: -10px -100px; /* arrow hovers for modern browsers*/
}
/*** point right for anchors in subs ***/
.sf-menu ul .sf-sub-indicator { background-position: -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position: 0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
background-position: -10px 0; /* arrow hovers for modern browsers*/
}
/*** shadows for all but IE6 ***/
.sf-shadow ul {
background: url('./_inc/images/shadow.png') no-repeat bottom right;
padding: 0 8px 9px 0;
-moz-border-radius-bottomleft: 17px;
-moz-border-radius-topright: 17px;
-webkit-border-top-right-radius: 17px;
-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
background: transparent;
}
/*--------------------------------------------------------------
4.1 - Pagination
--------------------------------------------------------------*/
div.pagination {
margin: 0;
padding: 10px 0;
color: #999;
font-size: 12px;
height: 16px;
}
div.pagination .pag-count {
float: left;
}
div.pagination#pag-bottom {
margin-top: 0;
}
div.pagination .pagination-links {
float: right;
}
div.pagination .pagination-links span,
div.pagination .pagination-links a {
font-size: 12px;
padding: 0 5px;
}
div.pagination .pagination-links a:hover {
font-weight: bold;
}
/*--------------------------------------------------------------
5.0 - WordPress
--------------------------------------------------------------*/
div.post, div#blog-search div.type-page {
margin: 0 0 20px;
overflow: hidden;
clear: left;
padding: 4px 2px 22px;
}
div#blog-latest div.post {
border-bottom: 1px solid #ddd;
}
div.page h1.pagetitle, h1.posttitle {
line-height: 1.3em;
font-size: 21px;
}
.navigation, .paged-navigation, .comment-navigation {
overflow: hidden;
font-style: italic;
font-size: 14px;
padding: 5px 0;
margin: 5px 0 25px 0;
}
.alignright {
float: right;
margin-left: 15px;
}
.alignleft {
float: left;
margin-right: 15px;
}
div.post p, div.page p { margin: 0; }
div.post ul, div.post ol, div.post dl,
div.page ul, div.page ol, div.page dl { margin: 0 0 18px 3em; }
/*div.post ul, div.page ul { list-style: square; }*/
/*div.post ol, div.page ol { list-style: decimal; }*/
div.post ol ol, div.page ol ol { list-style: upper-alpha; }
div.post dl, div.page dl { margin-left: 0; }
div.post dt, div.page dt { font-size: 14px; font-weight: bold; font-family: ; }
div.post dd, div.page dd { margin: 0 0 15px 0;}
div.post ul ul, div.post ol ol, div.post ul ol, div.post ol ul,
div.page ul ul, div.page ol ol, div.page ul ol, div.page ol ul {
margin-bottom: 0;
}
div.post pre, div.post code p,
div.page pre, div.page code p {
padding: 20px;
background-color: #f4f4f4;
margin-bottom: 24px;
}
div.post blockquote, div.page blockquote {
quotes: none;
font-style:italic;
padding:0 3em;
font-size: 16px;
font-family: Georgia,"Times New Roman",serif;
line-height: 150%;
}
div.post table {
border: 1px solid #E7E7E7;
margin: 0 -1px 24px 0;