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

Last change on this file since 1869 was 1869, checked in by vdigital, 17 years ago

Bug: Minor HTML change to keep HTML 4.01 Strict level (category_cats.inc.php)

New: Label over quick search (and different display solutions in themes: center, left, italic, hidden, pre-filling hidden).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: theme.css 1869 2007-03-04 19:00:43Z vdigital $ */
2
3/* text color */
4BODY, H1, H3, DT,
5INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
6  color:#e0e0e0;
7}
8
9H2, #menubar DT, .throw {
10  color: #fff48e;
11}
12
13#content .navigationBar {
14  color: #aaaaaa;
15}
16#content .pageNumberSelected {
17  color: #000000;
18}
19
20/* backgrounds */
21BODY {
22  background-color: #000000;
23}
24
25H3, #the_page, #imageHeaderBar, #imageToolBar A:hover, .row1  {
26  background-color: #3f3f3f;
27}
28
29#menubar DL, #content, #imageToolBar, .header_notes, .content {
30  background-color: #5f5f5f;
31}
32
33H2, #menubar DT, .throw  {
34  background-image: url(images/tableh1_bg.png);
35}
36
37#imageHeaderBar H2 {
38  background-image: none;
39  background-color: transparent;
40  border: none;
41}
42
43#imageHeaderBar {
44  background-image: url(images/tableh2_bg.png);
45  background-repeat: repeat-x;
46  background-position: center;
47}
48
49/* borders */
50#menubar DL, #content, .content,
51#comments DIV.comment BLOCKQUOTE {
52  border: 1px solid #000000;
53}
54
55#imageHeaderBar {
56  border-top: 1px solid #000000;
57}
58H2, #menubar DT, #imageToolBar {
59  border-bottom: 1px solid #000000;
60}
61
62#theImage IMG {
63  border-color: #000000;
64}
65
66#content UL.thumbnail IMG {
67  border: 1px solid #a0a0a0;
68}
69
70FIELDSET, INPUT, SELECT, TEXTAREA,
71#content DIV.comment  A.illustration IMG, #infos,
72#content DIV.thumbnailCategory {
73  border: 1px solid gray;
74}
75
76#comments DIV.comment BLOCKQUOTE {
77  border-left: 2px solid #696969;
78}
79
80#content UL.thumbnails SPAN.wrap2 {
81  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
82  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
83}
84
85#content UL.thumbnails SPAN.wrap2:hover,
86#content UL.thumbnailCategories DIV.thumbnailCategory:hover,
87#content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
88  background-color: #faebd7;
89  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
90  color: black;
91}
92
93
94/* links */
95A, INPUT.rateButton {
96  color: #FFFFFF;
97}
98
99A:hover {
100  color: #FFF48E;
101}
102
103#imageToolBar A, #imageToolBar A:hover,
104A.navThumb, A.navThumb:hover {
105  border-bottom: none;
106}
107
108/* others */
109.pleaseNote {
110  background: #9c9c9c;
111  color: #ffff99;
112  padding: 1ex;
113  font-weight: bold;
114}
115#the_page {
116  border: 1px solid #e0e0e0;
117  padding-top: 5px;
118  padding-bottom:30px;
119  text-align:center;
120  display:block;
121}
122
123/*calendar elements*/
124SPAN.calItemEmpty { color: silver; }
125
126SPAN.calItem, SPAN.calItemEmpty
127{
128  border: 1px solid gray;
129}
130
131/* nice looking month calendar*/
132TD.calDayCellEmpty, TD.calDayCellFull { border: 1px solid gray;}
133
134TD.calDayCellEmpty { color: silver; }
135
136.calBackDate { color: #000; }
137.calForeDate { color: #fff; }
138.virtual_cat { background: #3f3f3f !important; }
139#content ul.thumbnailCategories li div.thumbnailCategory .description p {
140  display: none;
141}
142#content ul.thumbnailCategories li div.thumbnailCategory .description p + p {
143  display: inline;
144}
145.qsearch { font-size: 80%; font-style: normal; }
146#mbMenu #quicksearch > p { text-align: left; }
Note: See TracBrowser for help on using the repository browser.