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

Last change on this file since 1950 was 1950, checked in by rvelices, 17 years ago

merge revisions 1938 and 1949 from branch-1_7 to trunk:
dark theme correction
permalink and category.php redirections are permanent (http code 301) instead of temporary (301)
added rel nofollow for the metadata link on picture page
changed h2 background color style in dark/mail-css (was not readable when images are not downloaded)

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