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

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

improve template : split theme from template itself

rest of the job : template (yoga), themes (clear dark), and php to handle them

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 {
37    background-image: url(images/tableh2_bg.png);
38    background-repeat: repeat-x;
39    background-position: center;
40}
41
42/* borders */
43#menubar DL, #content, #imageToolBar, #theImage IMG,
44#comments DIV.comment BLOCKQUOTE {
45  border: 1px solid #000000;
46}
47
48#theImage IMG {
49  border-width: 3px;
50}
51
52#content UL.thumbnail IMG {
53    border: 1px solid #a0a0a0;
54}
55
56FIELDSET, INPUT, SELECT, TEXTAREA,
57#content DIV.comment  A.illustration IMG, #infos {
58  border: 1px solid gray;
59}
60
61#comments DIV.comment BLOCKQUOTE {
62  border-left: 2px solid #696969;
63}
64
65#content UL.thumbnails SPAN.wrap2 {
66  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
67  -moz-border-radius: 4px;      /* round corners with Geko */
68  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
69}
70#content UL.thumbnails SPAN.wrap2:hover {
71  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
72}
73
74H2, #menubar DT, #imageHeaderBar {
75    border-bottom: 1px solid #000000;
76}
77
78/* links */
79A {
80    color: #FFFFFF;
81}
82
83A:hover {
84    color: #FFF48E;
85}
86
87#imageToolBar A, #imageToolBar A:hover {
88    border-bottom: none;
89}
90
91A.navThumb, A.navThumb:hover {
92    border-bottom: none;
93}
94
95/* others */
96.pleaseNote {
97    background: #9c9c9c;
98    color: #ffff99;
99    padding: 1ex;
100    font-weight: bold;
101}
102#the_page {
103    border: 1px solid #e0e0e0;
104    padding-top: 5px;   
105    padding-bottom:30px;
106    text-align:center;
107    display:block;
108    background:#3f3f3f;
109}
Note: See TracBrowser for help on using the repository browser.