source: branches/1.5/template/yoga/default-colors.css @ 11761

Last change on this file since 11761 was 977, checked in by plg, 19 years ago
  • bug fixed : #eee background color for blockquote comments had disappeared. Now comments are displayed with same colors in comments.php and picture.php
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1BODY {
2        color:#696969; /* dimgray */
3    /*color:#111111;*/
4    background: #ffffff;
5}
6
7H1 {
8    color: #696969;
9    background: transparent;
10}
11
12H2 {
13    color: #696969;
14    background: #d3d3d3;
15}
16
17H3 {
18    color: #696969;
19    background: #ffffff;
20}
21
22A {
23    color: #005e89;
24    background: transparent;
25}
26
27A:hover {
28    color: #858460;
29}
30
31
32.pleaseNote {
33    background: #9c9c9c;
34    color: #ffff99;
35    padding: 1ex;
36    font-weight: bold;
37}
38
39#imageHeaderBar {
40    background: #d3d3d3;
41}
42#imageToolBar {
43    background: #eeeeee;
44    border: 1px solid #d3d3d3;
45}
46#imageToolBar * {
47    background: inherit;
48}
49
50#imageToolBar A, #imageToolBar A:hover {
51    border-bottom: none;
52}
53#imageToolBar A:hover {
54    background: #d3d3d3;
55}
56
57#theImage IMG {
58    border: 3px solid #d3d3d3;
59}
60A.navThumb, A.navThumb:hover {
61    border-bottom: none;
62}
63
64
65#content {
66    border: 1px solid #d3d3d3;
67    background:#eeeeee;
68}
69
70#content H3 {
71    text-align: center;
72}
73
74#content UL.thumbnail IMG {
75    border: 1px solid #a0a0a0;
76}
77
78/* So that non-links are slightly greyed out */
79#content .navigationBar {
80    color: #696969;
81}
82#content .pageNumberSelected {
83    color: #000000;
84}
85
86
87#menubar DL {
88    border: 1px solid #d3d3d3;
89    background: #eeeeee;
90}
91
92#menubar DT {
93    color: #696969;
94    background: #d3d3d3;
95}
96
97#menubar DD {
98    background:#eeeeee;
99}
100
101/* User comments */
102#content DIV.comment {
103  border: 1px solid gray;
104}
105
106#content DIV.comment  A.illustration IMG {
107  border: 1px solid gray;
108}
109
110#comments DIV.comment BLOCKQUOTE {
111    border: 1px solid #d3d3d3;
112    border-left: 2px solid #696969;
113    background-color: #eee;
114}
115
116/* Tables & forms */
117.throw {
118        background-color:white;
119}
120input, select, textarea {
121        color:black;
122        background-color: lightgrey;
123        border: 1px solid gray;
124}
125
126.errors { /* Errors display */
127  color: red;
128  background-color: #ffe1e1;
129  font-weight: bold;
130  text-align: left;
131  margin: 5px;
132  border: 1px solid red;
133  background-image: url(admin/images/errors.png);
134  background-repeat: no-repeat;
135  background-position: top right;
136  padding: 10px 50px 10px 10px;
137}
138
139.errors ul li
140{
141  font-weight: normal;
142}
143
144/**
145 * Informations box in administration
146 */
147.infos {
148  text-align: left;
149  background-color: palegreen;
150  background-image: url(admin/images/infos.png);
151  background-repeat: no-repeat;
152  background-position: top right;
153  color: darkgreen;
154  font-weight: bold;
155  margin: 5px;
156  border:1px solid gray;
157  padding: 10px 50px 10px 10px;
158}
159
160LEGEND {
161  font-style: italic;
162}
163
164FIELDSET {
165  border: 1px solid gray;
166}
Note: See TracBrowser for help on using the repository browser.