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

Last change on this file since 2226 was 2135, checked in by rvelices, 17 years ago
  • fix plugin menu link broken with xamp (realpath behaves differently)
  • complete quick search rewriting
    • now we can quote phrases as in google "New York" is not the same as New York
    • user comments not searched anymore (faster)
    • the big full text query does not use joins anymore (faster)
    • related tags not shown on the index page, but now you can see the matching tags and matching categories
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1/* $Id: default-layout.css 2135 2007-10-12 03:27:34Z rvelices $ */
2@import "admin/default-layout.css";
3BODY {
4  margin: 5px;
5  padding: 0;
6  font-size: 0.8em;
7  font-family:  Univers, Helvetica, Optima, "Bitstream Vera Sans", sans-serif;
8  text-align: center; /* be nice to IE5 */
9}
10
11#the_page {
12    /* Just in case another template needs an inner frame */
13}
14
15H1 {
16  text-align: center;
17  font-size: 150%;
18  font-weight: bold;
19  padding: 0;
20  margin: 0.5em 0 1em 0;
21}
22
23H2 {
24    margin: 0;
25    padding: 5px 0.5em 5px 0.5em;
26    text-align: left;
27    font-size: 120%;
28}
29H5 {
30    margin: 0;
31    padding: 0 1.5em 0 30%;
32    text-align: right;
33    font-size: 90%;
34}
35A {
36    text-decoration:none;
37    border-bottom: 1px dotted #005e89;
38}
39A:hover {
40    border-bottom: 1px solid #858460;
41}
42A.button, A.button:hover { 
43  border: 0; 
44}
45IMG {
46    border: none;
47}
48
49HR.separation {
50  visibility: hidden;
51  clear: both;
52}
53
54#copyright {
55    clear: both;
56    font-size: 83%;
57    text-align: center;
58    margin: 0 0 10px 0;
59}
60
61/** General defaults **/
62INPUT, SELECT {
63  margin: 0;
64  font-size: 1em;       /* <= some browsers don't set it correctly */
65}
66UL, DL, LI { text-align: left;}
67TABLE {                 /* horizontaly centered */
68  margin-left: auto;
69  margin-right: auto;
70}
71/* for debugging purpose */
72PRE { text-align:left; }
73
74/** forms **/
75
76FORM { padding: 0em; }
77
78FORM P {
79        text-align: center;
80        margin-top: 2em;
81        margin-bottom: 2em;
82}
83
84FORM FIELDSET P {
85        margin-top: 1em;
86        margin-bottom: 0;
87}
88
89.small {
90        font-size: 80%;
91}
92
93TEXTAREA.description {
94  height: 6em;
95  width: 40em;
96  overflow: auto;
97}
98
99SELECT.categoryList {
100  height: 20em;
101  width: auto;
102}
103
104DIV.comment BLOCKQUOTE {
105  padding: 0.5em;
106  overflow: auto;       /* no solution for IE6 */
107  min-height: 2.75em;   /* fix a Gecko bug whith scrollbar and 1 line only */
108}
109
110
111/**
112 * Filter forms are displayed label by label with the input (or select...)
113 * below the label. Use an UL to make a group (radiobox for instance).
114 * Use a SPAN to group objects in line
115 */
116FIELDSET {
117  padding: 1em;
118  margin: 1em;
119  overflow: hidden; /* <- makes Opera happy */
120}
121
122FORM.filter FIELDSET UL {
123  margin: 0;
124}
125FORM.filter FIELDSET UL,
126FORM.filter FIELDSET LABEL {
127  display: block;
128  float: left;
129  margin-right: 1em;
130  padding: 0;
131}
132
133FORM.filter FIELDSET LI {
134  list-style: none;
135  margin-bottom: 0.5em;
136}
137
138FORM.filter FIELDSET LI LABEL {
139  display: inline;
140  float: none;
141}
142
143FORM.filter FIELDSET UL.tagSelection LABEL {
144  display: inline;
145  float: none;
146  margin-right:0.5em;/*reduce from above*/
147}
148
149/* cannot use FIELDSET>LABEL because of IE<=6 */
150FORM.filter FIELDSET LABEL INPUT,
151FORM.filter FIELDSET LABEL SELECT,
152FORM.filter FIELDSET LABEL SPAN,
153FORM.filter FIELDSET LABEL TEXTAREA {
154  display: block;
155  margin: 0.5em 0;
156}
157FORM.filter FIELDSET * LABEL INPUT,
158FORM.filter FIELDSET * LABEL SELECT,
159FORM.filter FIELDSET * LABEL TEXTAREA,
160FORM.filter FIELDSET LABEL SPAN INPUT,
161FORM.filter FIELDSET LABEL SPAN SELECT,
162FORM.filter FIELDSET LABEL SPAN TEXTAREA {
163  display: inline;
164  vertical-align: top;
165  margin: 0 0.5em 0 0;
166}
167
168FORM.filter FIELDSET UL.tagSelection LI LABEL INPUT {
169  margin-right:0;
170}
171
172/* following declaration is important to avoid strange FF behaviour */
173FORM.filter FIELDSET LABEL SPAN SELECT {
174  margin: 0;
175}
176
177FORM.filter FIELDSET P
178{
179  clear: left;
180  display: block;
181}
182
183FORM.filter INPUT[type="submit"] {
184  margin-top: 1em;
185}
186
187FORM.properties UL, FORM#update UL {
188  list-style-type: none;
189  margin: 0;
190  padding: 0;
191}
192
193FORM.properties LI, FORM#update UL  {
194  margin-bottom: 0.5em;
195  padding: 0;
196  line-height: 1.8em;
197  clear: left;
198}
199
200FORM.properties SPAN.property {
201  font-weight: bold;
202  float: left;
203  width: 50%;
204  text-align: right;
205  margin: 0;
206  padding: 0 0.5em 0 0;
207}
208
209#theHeader H1 {
210  margin-bottom: 0.5em;
211}
212
213#theHeader P {
214  margin-top: 0;
215  padding: 0;
216}
217
218FORM#addComment FIELDSET LABEL {
219  clear: both;
220}
221
222FORM#addComment FIELDSET INPUT[type="hidden"] {
223  display: none;
224}
225
226/* button tools */
227UL.actions {
228  text-indent: 0;
229  list-style: none;
230}
231UL.actions  LI {
232  display: inline;
233}
234UL.actions  A {
235  border: none;
236}
237
238UL.tagSelection {
239  width: 99%;
240  margin: 1em 0 1em 0;
241  padding: 0;
242}
243
244UL.tagSelection LI {
245  display: inline;
246  white-space: nowrap;
247}
248
249#fullTagCloud {
250  font-size: 120%;
251  text-align: justify;
252  padding: 0;
253  margin: 1em 2em 1em 2em;
254}
255
256#fullTagCloud LI {
257  display: inline;
258  white-space: nowrap;
259  margin: 0 2px;
260}
261
262
263.tagLevel5 { font-size: 150%; }
264.tagLevel4 { font-size: 140%; }
265.tagLevel3 { font-size: 120%; }
266.tagLevel2 { font-size: 100%; }
267.tagLevel1 { font-size: 90%; }
268
269
270/* Popup help page */
271BODY#thePopuphelpPage #copyright {
272  display: none;
273}
274
275BODY#thePopuphelpPage #theHeader P {
276  display: none;
277}
278
279BODY#thePopuphelpPage #content P {
280  text-align: justify;
281  padding: 0.5em;
282}
283
284BODY#thePopuphelpPage #content OL LI,
285BODY#thePopuphelpPage #content UL LI
286{
287  margin-bottom: 0.5em;
288}
289
290BODY#thePopuphelpPage P#pageBottomActions A {
291  border: none;
292}
Note: See TracBrowser for help on using the repository browser.