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

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

import theme Simple version 2.5.4

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