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

Last change on this file since 2292 was 2292, checked in by rvelices, 17 years ago
  • can set privacy level for added elements during site sync
  • removed some unused css and simplified a bit dark theme (more consistent with the orhers)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/* $Id: theme.css 2292 2008-03-26 00:55:19Z rvelices $ */
2
3/* text color */
4BODY, H1, H3, DT,
5INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ {
6        color:#d0d0d0;
7}
8
9H2, #menubar DT, .throw {
10        color: #fff48e;
11}
12
13
14/* backgrounds */
15
16BODY, H3, #imageHeaderBar, #imageToolBar A:hover, .row1, UL.tabsheet LI.normal_tab {
17        background-color: #2f2f2f;
18}
19
20#menubar DL, #content, #imageToolBar, .header_notes, .content, UL.tabsheet LI.selected_tab {
21        background-color: #505050;
22}
23
24H2, #menubar DT, .throw {
25        background-image: url(images/tableh1_bg.png);
26}
27
28#imageHeaderBar H2 {
29        background-image: none;
30        background-color: transparent;
31        border: none;
32}
33
34#imageHeaderBar {
35        background-image: url(images/tableh2_bg.png);
36        background-repeat: repeat-x;
37        background-position: center;
38}
39
40/* borders */
41#menubar DL, #content, .content,
42#comments DIV.comment BLOCKQUOTE {
43        border: 1px solid #000000;
44}
45
46#imageHeaderBar {
47        border-top: 1px solid #000000;
48}
49H2, #menubar DT, #imageToolBar {
50        border-bottom: 1px solid #000000;
51}
52
53#theImage IMG {
54        border-color: #000000;
55}
56
57FIELDSET, INPUT, SELECT, TEXTAREA,
58#content DIV.comment  A.illustration IMG,
59#content DIV.thumbnailCategory {
60        border: 1px solid gray;
61}
62
63#comments DIV.comment BLOCKQUOTE {
64        border-left: 2px solid #696969;
65}
66
67#content UL.thumbnails SPAN.wrap2 {
68        border: 1px solid #aaaaaa;      /* thumbnails border color and style */
69        border-radius: 4px 4px; /* round corners with CSS3 compliant browsers */
70}
71
72#content UL.thumbnails SPAN.wrap2:hover,
73#content UL.thumbnailCategories DIV.thumbnailCategory:hover,
74#content UL.thumbnailCategories DIV.thumbnailCategory:hover A {
75        background-color: #faebd7;
76        border-color: yellow;   /* thumbnails border color when mouse cursor is over it */
77        color: black;
78}
79
80UL.tabsheet LI.normal_tab:hover { border-color: #fff48e; }
81
82/* links */
83A, INPUT.rateButton {
84        color: #FFFFFF;
85        border: none;
86}
87
88A:hover {
89        color: #FFF48E;
90}
91
92.virtual_cat { background: #3f3f3f; }
Note: See TracBrowser for help on using the repository browser.