Improve some sieve-related translations
[claws.git] / src / plugins / litehtml_viewer / css.inc
blob12889820110762a1b12d2e269c8bff7152ff798a
1 "html { \
2     display: block; \
3     height:100%; \
4     width:100%; \
5         position: relative; \
6 } \
7  \
8 head { \
9     display: none \
10 } \
11  \
12 meta { \
13     display: none \
14 } \
15  \
16 title { \
17     display: none \
18 } \
19  \
20 link { \
21     display: none \
22 } \
23  \
24 style { \
25     display: none \
26 } \
27  \
28 script { \
29     display: none \
30 } \
31  \
32 body { \
33         display:block;  \
34         margin:8px;  \
35     height:100%; \
36     width:100%; \
37 } \
38  \
39 p { \
40         display:block;  \
41         margin-top:1em;  \
42         margin-bottom:1em; \
43 } \
44  \
45 b, strong { \
46         display:inline;  \
47         font-weight:bold; \
48 } \
49  \
50 i, em { \
51         display:inline;  \
52         font-style:italic; \
53 } \
54  \
55 center  \
56 { \
57         text-align:center; \
58         display:block; \
59 } \
60  \
61 a:link \
62 { \
63         text-decoration: underline; \
64         color: #00f; \
65         cursor: pointer; \
66 } \
67  \
68 h1, h2, h3, h4, h5, h6, div { \
69         display:block; \
70 } \
71  \
72 h1 { \
73         font-weight:bold;  \
74         margin-top:0.67em;  \
75         margin-bottom:0.67em;  \
76         font-size: 2em; \
77 } \
78  \
79 h2 { \
80         font-weight:bold;  \
81         margin-top:0.83em;  \
82         margin-bottom:0.83em;  \
83         font-size: 1.5em; \
84 } \
85  \
86 h3 { \
87         font-weight:bold;  \
88         margin-top:1em;  \
89         margin-bottom:1em;  \
90         font-size:1.17em; \
91 } \
92  \
93 h4 { \
94         font-weight:bold;  \
95         margin-top:1.33em;  \
96         margin-bottom:1.33em \
97 } \
98  \
99 h5 { \
100         font-weight:bold;  \
101         margin-top:1.67em;  \
102         margin-bottom:1.67em; \
103         font-size:.83em; \
104 } \
106 h6 { \
107         font-weight:bold;  \
108         margin-top:2.33em;  \
109         margin-bottom:2.33em; \
110         font-size:.67em; \
111 }  \
113 br { \
114         display:inline-block; \
115 } \
117 br[clear=\"all\"] \
118 { \
119         clear:both; \
120 } \
122 br[clear=\"left\"] \
123 { \
124         clear:left; \
125 } \
127 br[clear=\"right\"] \
128 { \
129         clear:right; \
130 } \
132 span { \
133         display:inline \
134 } \
136 img { \
137         display: inline-block; \
138 } \
140 img[align=\"right\"] \
141 { \
142         float: right; \
143 } \
145 img[align=\"left\"] \
146 { \
147         float: left; \
148 } \
150 hr { \
151     display: block; \
152     margin-top: 0.5em; \
153     margin-bottom: 0.5em; \
154     margin-left: auto; \
155     margin-right: auto; \
156     border-style: inset; \
157     border-width: 1px \
158 } \
161 /***************** TABLES ********************/ \
163 table { \
164     display: table; \
165     border-collapse: separate; \
166     border-spacing: 2px; \
167     border-top-color:gray; \
168     border-left-color:gray; \
169     border-bottom-color:black; \
170     border-right-color:black; \
171 } \
173 tbody, tfoot, thead { \
174         display:table-row-group; \
175         vertical-align:middle; \
176 } \
178 tr { \
179     display: table-row; \
180     vertical-align: inherit; \
181     border-color: inherit; \
182 } \
184 td, th { \
185     display: table-cell; \
186     vertical-align: inherit; \
187     border-width:1px; \
188     padding:1px; \
189 } \
191 th { \
192         font-weight: bold; \
193 } \
195 table[border] { \
196     border-style:solid; \
197 } \
199 table[border|=0] { \
200     border-style:none; \
201 } \
203 table[border] td, table[border] th { \
204     border-style:solid; \
205     border-top-color:black; \
206     border-left-color:black; \
207     border-bottom-color:gray; \
208     border-right-color:gray; \
209 } \
211 table[border|=0] td, table[border|=0] th { \
212     border-style:none; \
213 } \
215 caption { \
216         display: table-caption; \
217 } \
219 td[nowrap], th[nowrap] { \
220         white-space:nowrap; \
221 } \
223 tt, code, kbd, samp { \
224     font-family: monospace \
225 } \
227 pre, xmp, plaintext, listing { \
228     display: block; \
229     font-family: monospace; \
230     white-space: pre; \
231     margin: 1em 0 \
232 } \
234 /***************** LISTS ********************/ \
236 ul, menu, dir { \
237     display: block; \
238     list-style-type: disc; \
239     margin-top: 1em; \
240     margin-bottom: 1em; \
241     margin-left: 0; \
242     margin-right: 0; \
243     padding-left: 40px \
244 } \
246 ol { \
247     display: block; \
248     list-style-type: decimal; \
249     margin-top: 1em; \
250     margin-bottom: 1em; \
251     margin-left: 0; \
252     margin-right: 0; \
253     padding-left: 40px \
254 } \
256 li { \
257     display: list-item; \
258 } \
260 ul ul, ol ul { \
261     list-style-type: circle; \
262 } \
264 ol ol ul, ol ul ul, ul ol ul, ul ul ul { \
265     list-style-type: square; \
266 } \
268 dd { \
269     display: block; \
270     margin-left: 40px; \
271 } \
273 dl { \
274     display: block; \
275     margin-top: 1em; \
276     margin-bottom: 1em; \
277     margin-left: 0; \
278     margin-right: 0; \
279 } \
281 dt { \
282     display: block; \
283 } \
285 ol ul, ul ol, ul ul, ol ol { \
286     margin-top: 0; \
287     margin-bottom: 0 \
288 } \
290 blockquote { \
291         display: block; \
292         margin-top: 1em; \
293         margin-bottom: 1em; \
294         margin-left: 40px; \
295         margin-left: 40px; \
296 } \
298 /*********** FORM ELEMENTS ************/ \
300 form { \
301         display: block; \
302         margin-top: 0em; \
303 } \
305 option { \
306         display: none; \
307 } \
309 input, textarea, keygen, select, button, isindex { \
310         margin: 0em; \
311         color: initial; \
312         line-height: normal; \
313         text-transform: none; \
314         text-indent: 0; \
315         text-shadow: none; \
316         display: inline-block; \
317 } \
318 input[type=\"hidden\"] { \
319         display: none; \
320 } \
323 article, aside, footer, header, hgroup, nav, section  \
324 { \
325         display: block; \
326 } \
328 small, sub, sup { font-size: 80%; } \
329 sub, sup { position: relative; } \
330 sub { top: +0.5em; } \
331 sup { top: -0.5em; } \