source: extensions/simple_themes/simple/theme.css @ 13548

Last change on this file since 13548 was 13548, checked in by plg, 12 years ago

import theme Simple version 2.2

  • fix the calendar's pages
  • update picture.tpl (download, favorites, metadata, rating)
  • change the way to hide blocks in JS, without <noscript>, thanks to VDigital & nicolas
  • update jquery to 1.4.2
  • remove standard deviation for votes
File size: 2.7 KB
Line 
1/* Grey theme for the simple template
2   author: Saïmon <contact at saimon.org> */
3
4body {
5  background-color: #333;
6  color: #999;
7}
8
9#content {
10  background-color: #3F3F3F;
11  border: 2px #606060 solid;
12  border-width: 2px 0;
13}
14
15.totalImages {
16  font-style: italic;
17  margin-top: 0;
18}
19
20a {
21  color: #999;
22}
23
24.titrePage, .titrePage a {
25  font-weight: bold;
26  text-transform: uppercase;
27  font-variant: normal;
28}
29
30h2, h3 {
31  font-variant: small-caps;
32}
33
34#copyright {
35  font-variant: small-caps;
36  text-transform: lowercase;
37}
38
39/* page content :  thumbnails */
40
41#thumbnails {
42  font-weight: bold;
43}
44.thumbnail {
45  border: 2px #707070 solid;
46}
47.thumbnail:hover {
48  border: 2px #f0f0f0 solid;
49}
50#thumbnails p {
51  margin: 0;
52}
53
54#menubar dt {
55  font-variant: small-caps;
56  font-weight: bold;
57}
58
59/* page content :  categories thumbnails */
60
61.illustration img {
62  border: 1px #606060 solid;
63}
64
65.illustration img:hover {
66  border: 1px #f0f0f0 solid;
67}
68
69.thumbCatDesc {
70  border-top: 1px #606060 dotted;
71  text-align: justify;
72}
73
74.pageNumberSelected {
75  font-weight: bold;
76  border-bottom: 1px solid;
77}
78
79.navigationBar a {
80  border-bottom: 1px dotted;
81}
82
83/* inputs */
84
85input, select, textarea {
86  background-color: #666;
87  border: 1px solid #999;
88  color: #F0F0F0;
89}
90
91input[type="submit"], input[type="reset"] {
92  background-color: #3f3f3f;
93  border: 1px solid #606060;
94  color: #999;
95}
96input[type="submit"]:hover, input[type="reset"]:hover {
97  background-color: #666;
98  border: 1px solid #999;
99  color: #F0F0F0;
100}
101
102fieldset {
103  border: 1px #606060 dotted;
104  margin: 0 0 1em;
105  padding: 1em;
106}
107
108fieldset legend {
109  padding: 0 3px;
110}
111
112fieldset li {
113  margin: 0.5em 0;
114}
115
116#quicksearch #q {
117  background-color: #3f3f3f;
118  border: 1px solid #606060;
119  color: #999;
120}
121
122/* picture page */
123
124.imageNumber {
125  border: 1px #999 solid;
126}
127
128#theImage img {
129  border: 8px #fff solid;
130}
131#theImage p {
132  margin: 1em;
133}
134
135#navThumbPrev img, #navThumbNext img {
136  border: 2px #606060 solid;
137}
138#navThumbPrev img:hover, #navThumbNext img:hover {
139  border: 2px #f0f0f0 solid;
140}
141
142/* Comments */
143
144#theComments h3 {
145  border-top: 2px solid #606060;
146}
147
148.commentList .author, .commentList .date {
149  font-weight: bold;
150}
151
152
153/* calendar */
154
155.calMonth td {
156  background-color: #363636;
157  text-align: center;
158}
159
160.calImg {
161  text-align: center;
162}
163.calImg img {
164  height: 80px;
165}
166
167.calBackDate, .calForeDate {
168  display: none;
169}
170
171/* tags */
172
173#fullTagCloud a:hover {
174  background: #606060;
175}
176
177#menuTagCloud span {
178  margin: 0;
179}
180
181.nbEntries {
182  text-align: right;
183}
184
185.mandatorystar {
186  color: #e04040;
187}
188
189/* help */
190
191.errors {
192  border: 2px solid #A04040;
193  color: #A04040;
194}
195.errors a {
196  color: #FF0000;
197  font-weight: bold;
198}
199
200.infos {
201  border: 2px solid #40A040;
202  color: #40A040;
203}
204.infos a {
205  color: #00FF00;
206  font-weight: bold;
207}
Note: See TracBrowser for help on using the repository browser.