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

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

fix bug 400 : <td nowrap> dans l'historique, and improve history tables, plus some code formating

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1/* $Id: theme.css 1339 2006-06-04 10:13:38Z chrisaga $ */
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
24H3, #the_page, #imageHeaderBar, #imageToolBar A:hover, .row1  {
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,
50#comments DIV.comment BLOCKQUOTE {
51  border: 1px solid #000000;
52}
53
54#imageHeaderBar {
55  border-top: 1px solid #000000;
56}
57H2, #menubar DT, #imageToolBar {
58  border-bottom: 1px solid #000000;
59}
60
61#theImage IMG {
62  border-color: #000000;
63}
64
65#content UL.thumbnail IMG {
66  border: 1px solid #a0a0a0;
67}
68
69FIELDSET, INPUT, SELECT, TEXTAREA,
70#content DIV.comment  A.illustration IMG, #infos,
71#content DIV.thumbnailCategory {
72  border: 1px solid gray;
73}
74
75#comments DIV.comment BLOCKQUOTE {
76  border-left: 2px solid #696969;
77}
78
79#content UL.thumbnails SPAN.wrap2 {
80  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
81  -moz-border-radius: 4px;      /* round corners with Geko */
82  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
83}
84#content UL.thumbnails SPAN.wrap2:hover {
85  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
86}
87
88/* links */
89A, .rateButton {
90  color: #FFFFFF;
91}
92
93A:hover {
94  color: #FFF48E;
95}
96
97#imageToolBar A, #imageToolBar A:hover {
98  border-bottom: none;
99}
100
101A.navThumb, A.navThumb:hover {
102  border-bottom: none;
103}
104
105/* others */
106.pleaseNote {
107  background: #9c9c9c;
108  color: #ffff99;
109  padding: 1ex;
110  font-weight: bold;
111}
112#the_page {
113  border: 1px solid #e0e0e0;
114  padding-top: 5px;
115  padding-bottom:30px;
116  text-align:center;
117  display:block;
118}
119
120/*calendar elements*/
121SPAN.calItemEmpty { color: silver; }
122
123SPAN.calItem, SPAN.calItemEmpty
124{
125  border: 1px solid gray;
126}
127
128/* nice looking month calendar*/
129TD.calDayCellEmpty, TD.calDayCellFull { border: 1px solid gray;}
130
131TD.calDayCellEmpty { color: silver; }
132
133.calBackDate { color: #000; }
134.calForeDate { color: #fff; }
Note: See TracBrowser for help on using the repository browser.