source: extensions/Simple_Grey/theme/grey/theme.css @ 4710

Last change on this file since 4710 was 4710, checked in by boulde, 14 years ago

remove unused code, add image size limit in themeconf and other suggestions
from EX-FTB, make the theme useable without javascript (show menu & comments),
...

File size: 2.0 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}
28
29h2, h3 {
30  font-variant: small-caps;
31}
32
33#copyright {
34  font-variant: small-caps;
35  text-transform: lowercase;
36}
37
38/* page content :  thumbnails */
39
40#thumbnails {
41  font-weight: bold;
42}
43.thumbnail {
44  border: 2px #707070 solid;
45}
46.thumbnail:hover {
47  border: 2px #f0f0f0 solid;
48}
49#thumbnails p {
50  margin: 0;
51}
52
53/* page content :  categories thumbnails */
54
55.illustration img {
56  border: 1px #606060 solid;
57}
58
59.illustration img:hover {
60  border: 1px #f0f0f0 solid;
61}
62
63.thumbCatDesc {
64  border-top: 1px #606060 dotted;
65  text-align: justify;
66}
67
68/* inputs */
69
70input[type="text"], input[type="password"], select, textarea, file {
71 background:#f0f0f0;
72 color: #333;
73 border: 1px solid;
74 margin: 0;
75}
76
77fieldset {
78  border: 1px #606060 dotted;
79  margin: 0 0 1em;
80  padding: 1em;
81}
82
83fieldset legend {
84  background-color: #333;
85  padding: 0 3px;
86}
87
88/* picture page */
89
90.imageNumber {
91  border: 1px #999 solid;
92}
93
94#theImage img {
95  border: 8px #fff solid;
96}
97
98#navThumbPrev img, #navThumbNext img {
99  border: 2px #606060 solid;
100}
101#navThumbPrev img:hover, #navThumbNext img:hover {
102  border: 2px #f0f0f0 solid;
103}
104
105/* Comments */
106
107#theComments h3 {
108  border-top: 2px solid #606060;
109}
110
111.commentList .author, .commentList .date {
112  font-weight: bold;
113}
114
115/* tags */
116
117#fullTagCloud a:hover {
118  background: #606060;
119}
120
121#menuTagCloud span {
122  margin: 0;
123}
124
125.nbEntries {
126  text-align: right;
127}
128
129.mandatorystar {
130  color: #e04040;
131}
132
133/* help */
134
135.errors {
136  border: 2px solid #A04040;
137  color: #A04040;
138}
139.errors a {
140  color: #FF0000;
141  font-weight: bold;
142}
143
144.infos {
145  border: 2px solid #40A040;
146  color: #40A040;
147}
148.infos a {
149  color: #00FF00;
150  font-weight: bold;
151}
Note: See TracBrowser for help on using the repository browser.