source: trunk/template/yoga/theme/clear/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: 1.4 KB
Line 
1/* $Id$ */
2
3/* text color */
4BODY, H1, H2, H3, DT {
5  color:#696969;        /* dimgray */
6}
7
8/* backgrounds */
9BODY, H3, .throw {
10  background-color: #ffffff;    /* white */
11}
12
13H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover {
14  background-color: #d3d3d3;
15}
16
17#menubar DL, #content, #imageToolBar {
18  background-color: #eeeeee;
19}
20
21/* borders */
22#menubar DL, #content, #imageToolBar, #theImage IMG,
23#comments DIV.comment BLOCKQUOTE {
24  border: 1px solid #d3d3d3;
25}
26
27#theImage IMG {
28  border-width: 3px;
29}
30
31#content UL.thumbnail IMG {
32    border: 1px solid #a0a0a0;
33}
34
35FIELDSET, INPUT, SELECT, TEXTAREA,
36#content DIV.comment  A.illustration IMG, #infos {
37  border: 1px solid gray;
38}
39
40#comments DIV.comment BLOCKQUOTE {
41  border-left: 2px solid #696969;
42}
43
44#content UL.thumbnails SPAN.wrap2 {
45  border: 1px solid #aaaaaa;    /* thumbnails border color and style */
46  -moz-border-radius: 4px;      /* round corners with Geko */
47  border-radius: 4px 4px;       /* round corners with CSS3 compliant browsers */
48}
49#content UL.thumbnails SPAN.wrap2:hover {
50  border-color: yellow;         /* thumbnails border color when mouse cursor is over it */
51}
52
53/* links */
54A {
55    color: #005e89;
56    background: transparent;
57}
58
59A:hover {
60    color: #858460;
61}
62
63#imageToolBar A, #imageToolBar A:hover {
64    border-bottom: none;
65}
66
67A.navThumb, A.navThumb:hover {
68    border-bottom: none;
69}
70
71/* others */
72.pleaseNote {
73    background: #9c9c9c;
74    color: #ffff99;
75    padding: 1ex;
76    font-weight: bold;
77}
78
Note: See TracBrowser for help on using the repository browser.