source: trunk/template/yoga/default-layout.css @ 3282

Last change on this file since 3282 was 3282, checked in by plg, 15 years ago

change: according to topic:15067, svn:keywords property was removed

  • Property svn:eol-style set to LF
File size: 4.4 KB
Line 
1/* $Id: /piwigo/trunk/template/yoga/default-layout.css 6724 2008-11-19T15:44:04.442288Z patdenice  $ */
2BODY {
3        margin: 5px;
4        padding: 0;
5        font-size: 0.8em;
6        font-family: Arial,Helvetica,sans-serif;
7}
8
9
10H1 {
11        text-align: center;
12        font-size: 150%;
13        font-weight: bold;
14        padding: 0;
15        margin: 0.5em 0 1em 0;
16}
17
18H2 {
19        margin: 0;
20        padding: 5px 0.5em 5px 0.5em;
21        text-align: left;
22        font-size: 120%;
23}
24
25A {
26        text-decoration:none;
27        border-bottom: 1px dotted #005e89;
28}
29A:hover {
30        border-bottom: 1px solid #858460;
31}
32
33IMG {
34        border: none;
35}
36
37HR.separation {
38        visibility: hidden;
39        clear: both;
40}
41
42#copyright {
43        clear: both;
44        font-size: 83%;
45        text-align: center;
46        margin: 0 0 10px 0;
47}
48
49INPUT, SELECT {
50        margin: 0;
51        font-size: 1em; /* <= some browsers don't set it correctly */
52}
53
54TABLE { /* horizontaly centered */
55        margin-left: auto;
56        margin-right: auto;
57}
58
59
60FORM { padding: 0; margin: 0; }
61
62FORM P {
63        text-align: center;
64        margin-top: 2em;
65        margin-bottom: 2em;
66}
67
68FORM FIELDSET P {
69        margin-top: 1em;
70        margin-bottom: 0;
71}
72
73SELECT.categoryList {
74        height: 20em;
75        width: 500px;
76}
77
78
79/**
80 * Filter forms are displayed label by label with the input (or select...)
81 * below the label. Use an UL to make a group (radiobox for instance).
82 * Use a SPAN to group objects in line
83 */
84FIELDSET {
85        padding: 1em;
86        margin: 1em;
87        overflow: hidden; /* <- makes Opera happy */
88}
89
90FORM.filter FIELDSET UL {
91  margin: 0;
92}
93FORM.filter FIELDSET UL,
94FORM.filter FIELDSET LABEL {
95        display: block;
96        float: left;
97        margin-right: 1em;
98        padding: 0;
99}
100
101FORM.filter FIELDSET LI {
102        list-style: none;
103        margin-bottom: 0.5em;
104}
105
106FORM.filter FIELDSET LI LABEL {
107        display: inline;
108        float: none;
109}
110
111FORM.filter FIELDSET UL.tagSelection LABEL {
112        display: inline;
113        float: none;
114        margin-right:0.5em;/*reduce from above*/
115}
116
117/* cannot use FIELDSET>LABEL because of IE<=6 */
118FORM.filter FIELDSET LABEL INPUT,
119FORM.filter FIELDSET LABEL SELECT,
120FORM.filter FIELDSET LABEL SPAN,
121FORM.filter FIELDSET LABEL TEXTAREA {
122  display: block;
123  margin: 0.5em 0;
124}
125FORM.filter FIELDSET * LABEL INPUT,
126FORM.filter FIELDSET * LABEL SELECT,
127FORM.filter FIELDSET * LABEL TEXTAREA,
128FORM.filter FIELDSET LABEL SPAN INPUT,
129FORM.filter FIELDSET LABEL SPAN SELECT,
130FORM.filter FIELDSET LABEL SPAN TEXTAREA {
131        display: inline;
132        vertical-align: top;
133        margin: 0 0.5em 0 0;
134}
135
136FORM.filter FIELDSET UL.tagSelection LI LABEL INPUT {
137        margin-right:0;
138}
139
140/* following declaration is important to avoid strange FF behaviour */
141FORM.filter FIELDSET LABEL SPAN SELECT {
142        margin: 0;
143}
144
145FORM.filter FIELDSET P
146{
147        clear: left;
148        display: block;
149}
150
151FORM.filter INPUT[type="submit"] {
152        margin-top: 1em;
153}
154
155FORM.properties UL {
156        list-style-type: none;
157        margin: 0;
158        padding: 0;
159}
160
161FORM.properties LI {
162        margin-bottom: 0.5em;
163        padding: 0;
164        line-height: 1.8em;
165        clear: left;
166}
167
168FORM.properties SPAN.property {
169        font-weight: bold;
170        float: left;
171        width: 50%;
172        text-align: right;
173        margin: 0;
174        padding: 0 0.5em 0 0;
175}
176
177/* button tools */
178UL.actions {
179        text-indent: 0;
180        list-style: none;
181}
182UL.actions LI {
183        display: inline;
184}
185UL.actions A, UL.actions IMG {
186        border: none;
187}
188
189UL.tagSelection {
190        width: 99%;
191        margin: 1em 0 1em 0;
192        padding: 0;
193}
194
195UL.tagSelection LI {
196        display: inline;
197        white-space: nowrap;
198}
199
200#fullTagCloud {
201        font-size: 120%;
202        text-align: justify;
203        padding: 0;
204        margin: 1em 2em 1em 2em;
205}
206
207#fullTagCloud SPAN {
208        white-space: nowrap;
209        margin: 0 2px;
210}
211
212
213.tagLevel5 { font-size: 150%; }
214.tagLevel4 { font-size: 140%; }
215.tagLevel3 { font-size: 120%; }
216.tagLevel2 { font-size: 100%; }
217.tagLevel1 { font-size: 90%; }
218
219
220/* Popup help page */
221BODY#thePopuphelpPage #copyright {
222        display: none;
223}
224
225#theNotificationPage p { padding: 0.5em; }
226BODY#thePopuphelpPage .content P {
227        text-align: justify;
228        padding: 0.5em;
229}
230
231BODY#thePopuphelpPage .content OL LI,
232BODY#thePopuphelpPage .content UL LI
233{
234        margin-bottom: 0.5em;
235}
236
237TR.tagLine {
238        border-bottom: 1px solid #ddd;
239}
240TD.nbEntries {
241        text-align: right;
242        font-style: italic;
243        font-size: 90%;
244}
245
246FIELDSET.tagLetter {
247        border: 1px solid #d3d3d3;
248        width: 200px;
249        margin: 0.5em;
250        padding: 10px;
251}
252
253LEGEND.tagLetterLegend {
254        border: 1px solid #d3d3d3;
255        font-size:120%;
256        font-weight: bold;
257        padding: 0 5px;
258        font-style: normal;
259}
260
261TABLE.tagLetterContent {
262        width:100%;
263        font-size:80%;
264        border-collapse : collapse;
265}
266
267#theHeader {text-align: center;}
268
269#theNotificationPage DL,
270#thePopuphelpPage DL { margin: 0 25px 25px; }
271.content #comments UL.thumbnailCategories LI { width:99%; }
272/* jQuery datepicker */
273IMG.ui-datepicker-trigger {
274        cursor : pointer;
275}
Note: See TracBrowser for help on using the repository browser.