source: trunk/template/yoga/default-colors.css @ 874

Last change on this file since 874 was 859, checked in by plg, 19 years ago
  • new : template yoga, made by yoDan, helped by chrisaga for integration becomes the official template.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 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 H2 {
71    text-align: left;
72}
73
74#content H3 {
75    text-align: center;
76}
77
78#content UL.thumbnail IMG {
79    border: 1px solid #a0a0a0;
80}
81
82/* So that non-links are slightly greyed out */
83#content .navigationBar {
84    color: #696969;
85}
86#content .pageNumberSelected {
87    color: #000000;
88}
89
90
91#menubar DL {
92    border: 1px solid #d3d3d3;
93    background: #eeeeee;
94}
95
96#menubar DT {
97    color: #696969;
98    background: #d3d3d3;
99}
100
101#menubar DD {
102    background:#eeeeee;
103}
104
105
106#comments BLOCKQUOTE {
107    background: #eeeeee;
108    border-left: 2px solid #696969;
109}
110
111/* Tables & forms */
112.throw {
113        background-color:white;
114}
115input, select, textarea {
116        color:black;
117        background-color: lightgrey;
118        border: 1px solid gray;
119}
120
121#errors { /* Errors display */
122  color: red;
123  background-color: #ffe1e1;
124  font-weight: bold;
125  text-align: left;
126  margin: 5px;
127  border: 1px solid red;
128  background-image: url(admin/images/errors.png);
129  background-repeat: no-repeat;
130  background-position: top right;
131  padding: 10px 50px 10px 10px;
132}
133
134#errors ul li
135{
136  font-weight: normal;
137}
138
139/**
140 * Informations box in administration
141 */
142#infos {
143  text-align: left;
144  background-color: palegreen;
145  background-image: url(admin/images/infos.png);
146  background-repeat: no-repeat;
147  background-position: top right;
148  color: darkgreen;
149  font-weight: bold;
150  margin: 5px;
151  border:1px solid gray;
152  padding: 10px 50px 10px 10px;
153}
154
155LEGEND {
156  font-style: italic;
157}
158
159FIELDSET {
160  border: 1px solid gray;
161}
Note: See TracBrowser for help on using the repository browser.