source: branches/branch-1_5/template/yoga/default-colors.css @ 964

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

bug 226 fixed : mixed class and id for "infos" and "errors" between tpl and css

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 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}
114
115/* Tables & forms */
116.throw {
117        background-color:white;
118}
119input, select, textarea {
120        color:black;
121        background-color: lightgrey;
122        border: 1px solid gray;
123}
124
125.errors { /* Errors display */
126  color: red;
127  background-color: #ffe1e1;
128  font-weight: bold;
129  text-align: left;
130  margin: 5px;
131  border: 1px solid red;
132  background-image: url(admin/images/errors.png);
133  background-repeat: no-repeat;
134  background-position: top right;
135  padding: 10px 50px 10px 10px;
136}
137
138.errors ul li
139{
140  font-weight: normal;
141}
142
143/**
144 * Informations box in administration
145 */
146.infos {
147  text-align: left;
148  background-color: palegreen;
149  background-image: url(admin/images/infos.png);
150  background-repeat: no-repeat;
151  background-position: top right;
152  color: darkgreen;
153  font-weight: bold;
154  margin: 5px;
155  border:1px solid gray;
156  padding: 10px 50px 10px 10px;
157}
158
159LEGEND {
160  font-style: italic;
161}
162
163FIELDSET {
164  border: 1px solid gray;
165}
Note: See TracBrowser for help on using the repository browser.