source: trunk/template/yoga/theme/dark/theme.css @ 981

Last change on this file since 981 was 981, checked in by chrisaga, 18 years ago

template : fix categoryActions margins and picture page title background

File size: 2.0 KB
Line 
1/* $Id$ */
2
3/* text color */
4BODY, H1, H3, DT {
5  color:#e0e0e0;
6}
7
8H2, #menubar DT, .throw {
9  color: #fff48e;
10}
11
12#content .navigationBar {
13  color: #aaaaaa;
14}
15#content .pageNumberSelected {
16  color: #000000;
17}
18
19/* backgrounds */
20BODY {
21  background-color: #000000;
22}
23
24H2, H3, #menubar DT, #imageHeaderBar, #imageToolBar A:hover, .throw {
25  background-color: #3f3f3f;
26}
27
28#menubar DL, #content, #imageToolBar {
29  background-color: #5f5f5f;
30}
31
32H2, #menubar DT, .throw  {
33  background-image: url(images/tableh1_bg.png);
34}
35
36#imageHeaderBar H2 {
37  background-image: none;
38  background-color: transparent;
39  border: none;
40}
41   
42#imageHeaderBar {
43  background-image: url(images/tableh2_bg.png);
44  background-repeat: repeat-x;
45  background-position: center;
46}
47
48/* borders */
49#menubar DL, #content, #imageToolBar, #theImage IMG,
50#comments DIV.comment BLOCKQUOTE {
51  border: 1px solid #000000;
52}
53
54#theImage IMG {
55  border-width: 3px;
56}
57
58#content UL.thumbnail IMG {
59  border: 1px solid #a0a0a0;
60}
61
62FIELDSET, INPUT, SELECT, TEXTAREA,
63#content DIV.comment  A.illustration IMG, #infos {
64  border: 1px solid gray;
65}
66
67#comments DIV.comment BLOCKQUOTE {
68  border-left: 2px solid #696969;
69}
70
71#content UL.thumbnails SPAN.wrap2 {
72  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
73  -moz-border-radius: 4px;      /* round corners with Geko */
74  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
75}
76#content UL.thumbnails SPAN.wrap2:hover {
77  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
78}
79
80H2, #menubar DT, #imageHeaderBar {
81  border-bottom: 1px solid #000000;
82}
83
84/* links */
85A {
86  color: #FFFFFF;
87}
88
89A:hover {
90  color: #FFF48E;
91}
92
93#imageToolBar A, #imageToolBar A:hover {
94  border-bottom: none;
95}
96
97A.navThumb, A.navThumb:hover {
98  border-bottom: none;
99}
100
101/* others */
102.pleaseNote {
103  background: #9c9c9c;
104  color: #ffff99;
105  padding: 1ex;
106  font-weight: bold;
107}
108#the_page {
109  border: 1px solid #e0e0e0;
110  padding-top: 5px;     
111  padding-bottom:30px;
112  text-align:center;
113  display:block;
114  background:#3f3f3f;
115}
Note: See TracBrowser for help on using the repository browser.