source: tags/release-1_6_0/template/yoga/default-layout.css @ 24806

Last change on this file since 24806 was 1393, checked in by chrisaga, 18 years ago

merge manualy from trunk r1389:1392

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1/* $Id: default-layout.css 1393 2006-06-24 12:17:41Z chrisaga $ */
2@import "admin/default-layout.css";
3BODY {
4    margin: 5px;
5    padding: 0;
6    font-size: 0.8em;
7    font-family: Bitsream Vera Sans, Helvetica, Arial, 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}
29
30A {
31    text-decoration:none;
32    border-bottom: 1px dotted #005e89;
33}
34A:hover {
35    border-bottom: 1px solid #858460;
36}
37
38IMG {
39    border: none;
40}
41
42HR.separation {
43  visibility: hidden;
44  clear: both;
45}
46
47#copyright {
48    clear: both;
49    font-size: 83%;
50    text-align: center;
51    margin: 0 0 10px 0;
52}
53
54/** General defaults **/
55INPUT {margin: 0;}
56UL, DL, LI { text-align: left;}
57TABLE {                 /* horizontaly centered */
58  margin-left: auto;
59  margin-right: auto;
60}
61/* for debugging purpose */
62PRE { text-align:left; }
63
64/** forms **/
65
66FORM { padding: 0em; }
67
68FORM P {
69        text-align: center;
70        margin-top: 2em;
71        margin-bottom: 2em;
72}
73.small {
74        font-size: 80%;
75}
76
77TEXTAREA.description {
78  height: 100px;
79  width: 500px;
80  overflow: auto;
81}
82
83/**
84 * Filter forms are displayed label by label with the input (or select...)
85 * below the label. Use an UL to make a group (radiobox for instance).
86 * Use a SPAN to group objects in line
87 */
88FIELDSET {
89  padding: 1em;
90  margin: 1em;
91  overflow: hidden; /* <- makes Opera happy */
92}
93
94FORM.filter FIELDSET UL {
95  margin: 0;
96}
97FORM.filter FIELDSET UL,
98FORM.filter FIELDSET LABEL {
99  display: block;
100  float: left;
101  margin-right: 1em;
102  padding: 0;
103}
104
105FORM.filter FIELDSET LI {
106  list-style: none;
107  margin-bottom: 0.5em;
108}
109
110FORM.filter FIELDSET LI LABEL {
111  display: inline;
112  float: none;
113}
114
115FORM.filter FIELDSET UL.tagSelection LABEL {
116  display: inline;
117  float: none;
118  margin-right:0.5em;/*reduce from above*/
119}
120
121/* cannot use FIELDSET>LABEL because of IE<=6 */
122FORM.filter FIELDSET LABEL INPUT,
123FORM.filter FIELDSET LABEL SELECT,
124FORM.filter FIELDSET LABEL SPAN,
125FORM.filter FIELDSET LABEL TEXTAREA {
126  display: block;
127  margin: 0.5em 0;
128}
129FORM.filter FIELDSET * LABEL INPUT,
130FORM.filter FIELDSET * LABEL SELECT,
131FORM.filter FIELDSET * LABEL TEXTAREA,
132FORM.filter FIELDSET LABEL SPAN INPUT,
133FORM.filter FIELDSET LABEL SPAN SELECT,
134FORM.filter FIELDSET LABEL SPAN TEXTAREA {
135  display: inline;
136  vertical-align: top;
137  margin: 0 0.5em 0 0;
138}
139
140FORM.filter FIELDSET UL.tagSelection LI LABEL INPUT {
141  margin-right:0;
142}
143
144/* following declaration is important to avoid strange FF behaviour */
145FORM.filter FIELDSET LABEL SPAN SELECT {
146  margin: 0;
147}
148
149FORM.filter FIELDSET P
150{
151  clear: left;
152  display: block;
153}
154
155FORM.filter INPUT[type="submit"] {
156  margin-top: 1em;
157}
158
159FORM.properties UL, FORM#update UL {
160  list-style-type: none;
161  margin: 0;
162  padding: 0;
163}
164
165FORM.properties LI, FORM#update UL  {
166  margin-bottom: 0.5em;
167  padding: 0;
168  line-height: 1.8em;
169}
170
171FORM.properties SPAN.property {
172  font-weight: bold;
173  float: left;
174  width: 50%;
175  text-align: right;
176  margin: 0;
177  padding: 0 0.5em 0 0;
178}
179
180#theHeader H1 {
181  margin-bottom: 0.5em;
182}
183
184#theHeader P {
185  margin-top: 0;
186  padding: 0;
187}
188
189BODY#thePopuphelpPage #copyright {
190  color: green;
191  display: none;
192}
193
194FORM#addComment FIELDSET LABEL {
195  clear: both;
196}
197
198FORM#addComment FIELDSET INPUT[type="hidden"] {
199  display: none;
200}
201
202/* button tools */
203UL.actions {
204  text-indent: 0;
205  list-style: none;
206}
207UL.actions  LI {
208  display: inline;
209}
210UL.actions  A {
211  border: none;
212}
213
214UL.tagSelection {
215  width: 40em;
216  margin: 1em 0 1em 0;
217  padding: 0;
218}
219
220UL.tagSelection LI {
221  display: inline;
222  white-space: nowrap;
223}
224
225#fullTagCloud { font-size: 140%; }
226
227#fullTagCloud LI { display: inline; }
228
229.tagLevel5 { font-size: 150%; }
230.tagLevel4 { font-size: 140%; }
231.tagLevel3 { font-size: 120%; }
232.tagLevel2 { font-size: 100%; }
233.tagLevel1 { font-size: 90%; }
Note: See TracBrowser for help on using the repository browser.