PluginProbe
Wp-Insert / 1.2
Wp-Insert v1.2
trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.3.0 1.3.1 1.3.3 1.4 1.5.0 1.5.1 1.5.2 1.5.3 1.6.0 1.6.1 1.6.2 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 2.0 All 63 releases
wp-insert / fckeditor / _samples / html / assets / sample14.styles.css

sample14.styles.css in Wp-Insert 1.2, at fckeditor/_samples/html/assets/sample14.styles.css

457 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
5 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
6
7 *
8
9 * == BEGIN LICENSE ==
10
11 *
12
13 * Licensed under the terms of any of the following licenses at your
14
15 * choice:
16
17 *
18
19 * - GNU General Public License Version 2 or later (the "GPL")
20
21 * http://www.gnu.org/licenses/gpl.html
22
23 *
24
25 * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
26
27 * http://www.gnu.org/licenses/lgpl.html
28
29 *
30
31 * - Mozilla Public License Version 1.1 or later (the "MPL")
32
33 * http://www.mozilla.org/MPL/MPL-1.1.html
34
35 *
36
37 * == END LICENSE ==
38
39 *
40
41 * Styles used by the XHTML 1.1 sample page (sample14.html).
42
43 */
44
45
46
47 /**
48
49 * Basic definitions for the editing area.
50
51 */
52
53 body
54
55 {
56
57 background-color: #ffffff;
58
59 padding: 5px 5px 5px 5px;
60
61 margin: 0px;
62
63 }
64
65
66
67 body, td
68
69 {
70
71 font-family: Arial, Verdana, sans-serif;
72
73 font-size: 12px;
74
75 }
76
77
78
79 a[href]
80
81 {
82
83 color: #0000FF !important; /* For Firefox... mark as important, otherwise it becomes black */
84
85 }
86
87
88
89 /**
90
91 * Core styles.
92
93 */
94
95
96
97 .Bold
98
99 {
100
101 font-weight: bold;
102
103 }
104
105
106
107 .Italic
108
109 {
110
111 font-style: italic;
112
113 }
114
115
116
117 .Underline
118
119 {
120
121 text-decoration: underline;
122
123 }
124
125
126
127 .StrikeThrough
128
129 {
130
131 text-decoration: line-through;
132
133 }
134
135
136
137 .Subscript
138
139 {
140
141 vertical-align: sub;
142
143 font-size: smaller;
144
145 }
146
147
148
149 .Superscript
150
151 {
152
153 vertical-align: super;
154
155 font-size: smaller;
156
157 }
158
159
160
161 /**
162
163 * Font faces.
164
165 */
166
167
168
169 .FontComic
170
171 {
172
173 font-family: 'Comic Sans MS';
174
175 }
176
177
178
179 .FontCourier
180
181 {
182
183 font-family: 'Courier New';
184
185 }
186
187
188
189 .FontTimes
190
191 {
192
193 font-family: 'Times New Roman';
194
195 }
196
197
198
199 /**
200
201 * Font sizes.
202
203 */
204
205
206
207 .FontSmaller
208
209 {
210
211 font-size: smaller;
212
213 }
214
215
216
217 .FontLarger
218
219 {
220
221 font-size: larger;
222
223 }
224
225
226
227 .FontSmall
228
229 {
230
231 font-size: 8pt;
232
233 }
234
235
236
237 .FontBig
238
239 {
240
241 font-size: 14pt;
242
243 }
244
245
246
247 .FontDouble
248
249 {
250
251 font-size: 200%;
252
253 }
254
255
256
257 /**
258
259 * Font colors.
260
261 */
262
263 .FontColor1
264
265 {
266
267 color: #ff9900;
268
269 }
270
271
272
273 .FontColor2
274
275 {
276
277 color: #0066cc;
278
279 }
280
281
282
283 .FontColor3
284
285 {
286
287 color: #ff0000;
288
289 }
290
291
292
293 .FontColor1BG
294
295 {
296
297 background-color: #ff9900;
298
299 }
300
301
302
303 .FontColor2BG
304
305 {
306
307 background-color: #0066cc;
308
309 }
310
311
312
313 .FontColor3BG
314
315 {
316
317 background-color: #ff0000;
318
319 }
320
321
322
323 /**
324
325 * Indentation.
326
327 */
328
329
330
331 .Indent1
332
333 {
334
335 margin-left: 40px;
336
337 }
338
339
340
341 .Indent2
342
343 {
344
345 margin-left: 80px;
346
347 }
348
349
350
351 .Indent3
352
353 {
354
355 margin-left: 120px;
356
357 }
358
359
360
361 /**
362
363 * Alignment.
364
365 */
366
367
368
369 .JustifyLeft
370
371 {
372
373 text-align: left;
374
375 }
376
377
378
379 .JustifyRight
380
381 {
382
383 text-align: right;
384
385 }
386
387
388
389 .JustifyCenter
390
391 {
392
393 text-align: center;
394
395 }
396
397
398
399 .JustifyFull
400
401 {
402
403 text-align: justify;
404
405 }
406
407
408
409 /**
410
411 * Other.
412
413 */
414
415
416
417 code
418
419 {
420
421 font-family: courier, monospace;
422
423 background-color: #eeeeee;
424
425 padding-left: 1px;
426
427 padding-right: 1px;
428
429 border: #c0c0c0 1px solid;
430
431 }
432
433
434
435 kbd
436
437 {
438
439 padding: 0px 1px 0px 1px;
440
441 border-width: 1px 2px 2px 1px;
442
443 border-style: solid;
444
445 }
446
447
448
449 blockquote
450
451 {
452
453 color: #808080;
454
455 }
456
457