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

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

import theme Simple, version 2.0

  • adaptation of the theme for Piwigo 2.1
File size: 2.2 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[type="text"], input[type="password"], select, textarea, file {
86 background:#f0f0f0;
87 color: #333;
88 border: 1px solid;
89 margin: 0;
90}
91
92fieldset {
93  border: 1px #606060 dotted;
94  margin: 0 0 1em;
95  padding: 1em;
96}
97
98fieldset legend {
99  background-color: #333;
100  padding: 0 3px;
101}
102
103/* picture page */
104
105.imageNumber {
106  border: 1px #999 solid;
107}
108
109#theImage img {
110  border: 8px #fff solid;
111}
112#theImage p {
113  margin: 1em;
114}
115
116#navThumbPrev img, #navThumbNext img {
117  border: 2px #606060 solid;
118}
119#navThumbPrev img:hover, #navThumbNext img:hover {
120  border: 2px #f0f0f0 solid;
121}
122
123/* Comments */
124
125#theComments h3 {
126  border-top: 2px solid #606060;
127}
128
129.commentList .author, .commentList .date {
130  font-weight: bold;
131}
132
133/* tags */
134
135#fullTagCloud a:hover {
136  background: #606060;
137}
138
139#menuTagCloud span {
140  margin: 0;
141}
142
143.nbEntries {
144  text-align: right;
145}
146
147.mandatorystar {
148  color: #e04040;
149}
150
151/* help */
152
153.errors {
154  border: 2px solid #A04040;
155  color: #A04040;
156}
157.errors a {
158  color: #FF0000;
159  font-weight: bold;
160}
161
162.infos {
163  border: 2px solid #40A040;
164  color: #40A040;
165}
166.infos a {
167  color: #00FF00;
168  font-weight: bold;
169}
Note: See TracBrowser for help on using the repository browser.