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

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

import theme Simple version 2.3

  • if cl_conflit is used, don't add jQuery.noConflict
  • fix the possibility to toggle visibility of image informations
  • show logout link when connected - thanks to gbo
  • update jquery to 1.4.4
  • backport commit from piwigo: r6244, r6430 & r6438
  • add gitignore
  • update javascripts + add script to combine/minify
  • apply r6594 from piwigo's trunk
  • move jquery in the header, using known_script
  • translation for the menu title
  • add 1px icon start_filter.png to avoid loading error with rvtree plugin
  • margin for error & info divs
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;
58}
59
60/* page content :  categories thumbnails */
61
62.illustration img {
63  border: 2px #606060 solid;
64}
65
66.illustration img:hover {
67  border: 2px #f0f0f0 solid;
68}
69
70.thumbCatDesc {
71  border-top: 1px #606060 solid;
72  text-align: justify;
73}
74
75.pageNumberSelected {
76  font-weight: bold;
77  border-bottom: 1px solid;
78}
79
80.navigationBar a {
81  border-bottom: 1px dotted;
82}
83
84/* inputs */
85
86input, select, textarea {
87  background-color: #666;
88  border: 1px solid #999;
89  color: #F0F0F0;
90}
91
92input[type="submit"], input[type="reset"] {
93  background-color: #3f3f3f;
94  border: 1px solid #606060;
95  color: #999;
96}
97input[type="submit"]:hover, input[type="reset"]:hover {
98  background-color: #666;
99  border: 1px solid #999;
100  color: #F0F0F0;
101}
102
103fieldset {
104  border: 1px #606060 dotted;
105  margin: 0 0 1em;
106  padding: 1em;
107}
108
109fieldset legend {
110  padding: 0 3px;
111}
112
113fieldset li {
114  margin: 0.5em 0;
115}
116
117#quicksearch #q {
118  background-color: #3f3f3f;
119  border: 1px solid #606060;
120  color: #999;
121}
122
123/* picture page */
124
125.imageNumber {
126  border: 1px #999 solid;
127}
128
129#theImage img {
130  border: 8px #fff solid;
131}
132#theImage p {
133  margin: 1em;
134}
135
136#navThumbPrev img, #navThumbNext img {
137  border: 2px #606060 solid;
138}
139#navThumbPrev img:hover, #navThumbNext img:hover {
140  border: 2px #f0f0f0 solid;
141}
142
143/* Comments */
144
145#theComments h3 {
146  border-top: 2px solid #606060;
147}
148
149.commentList .author, .commentList .date {
150  font-weight: bold;
151}
152
153
154/* calendar */
155
156.calMonth td {
157  background-color: #363636;
158  text-align: center;
159}
160
161.calImg {
162  text-align: center;
163}
164.calImg img {
165  height: 80px;
166}
167
168.calBackDate, .calForeDate {
169  display: none;
170}
171
172/* tags */
173
174#fullTagCloud a:hover {
175  background: #606060;
176}
177
178#menuTagCloud span {
179  margin: 0;
180}
181
182.nbEntries {
183  text-align: right;
184}
185
186.mandatorystar {
187  color: #e04040;
188}
189
190/* help */
191
192.errors {
193  border: 2px solid #A04040;
194  color: #A04040;
195}
196.errors a {
197  color: #FF0000;
198  font-weight: bold;
199}
200
201.infos {
202  border: 2px solid #40A040;
203  color: #40A040;
204}
205.infos a {
206  color: #00FF00;
207  font-weight: bold;
208}
Note: See TracBrowser for help on using the repository browser.