1 | /* |
---|
2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net |
---|
3 | * Copyright (C) 2003-2007 Frederico Caldeira Knabben |
---|
4 | * |
---|
5 | * == BEGIN LICENSE == |
---|
6 | * |
---|
7 | * Licensed under the terms of any of the following licenses at your |
---|
8 | * choice: |
---|
9 | * |
---|
10 | * - GNU General Public License Version 2 or later (the "GPL") |
---|
11 | * http://www.gnu.org/licenses/gpl.html |
---|
12 | * |
---|
13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") |
---|
14 | * http://www.gnu.org/licenses/lgpl.html |
---|
15 | * |
---|
16 | * - Mozilla Public License Version 1.1 or later (the "MPL") |
---|
17 | * http://www.mozilla.org/MPL/MPL-1.1.html |
---|
18 | * |
---|
19 | * == END LICENSE == |
---|
20 | * |
---|
21 | * This is the default CSS file used by the editor area. It defines the |
---|
22 | * initial font of the editor and background color. |
---|
23 | * |
---|
24 | * A user can configure the editor to use another CSS file. Just change |
---|
25 | * the value of the FCKConfig.EditorAreaCSS key in the configuration |
---|
26 | * file. |
---|
27 | */ |
---|
28 | |
---|
29 | /* |
---|
30 | The "body" styles should match your editor web site, mainly regarding |
---|
31 | background color and font family and size. |
---|
32 | */ |
---|
33 | |
---|
34 | body |
---|
35 | { |
---|
36 | background-color: #ffffff; |
---|
37 | padding: 5px 5px 5px 5px; |
---|
38 | margin: 0px; |
---|
39 | } |
---|
40 | |
---|
41 | body, td |
---|
42 | { |
---|
43 | font-family: Arial, Verdana, Sans-Serif; |
---|
44 | font-size: 12px; |
---|
45 | } |
---|
46 | |
---|
47 | a[href] |
---|
48 | { |
---|
49 | color: #0000FF !important; /* For Firefox... mark as important, otherwise it becomes black */ |
---|
50 | } |
---|
51 | |
---|
52 | /* |
---|
53 | Just uncomment the following block if you want to avoid spaces between |
---|
54 | paragraphs. Remember to apply the same style in your output front end page. |
---|
55 | */ |
---|
56 | |
---|
57 | /* |
---|
58 | p, ul, li |
---|
59 | { |
---|
60 | margin-top: 0px; |
---|
61 | margin-bottom: 0px; |
---|
62 | } |
---|
63 | */ |
---|
64 | |
---|
65 | /* |
---|
66 | The following are some sample styles used in the "Styles" toolbar command. |
---|
67 | You should instead remove them, and include the styles used by the site |
---|
68 | you are using the editor in. |
---|
69 | */ |
---|
70 | |
---|
71 | .Bold |
---|
72 | { |
---|
73 | font-weight: bold; |
---|
74 | } |
---|
75 | |
---|
76 | .Title |
---|
77 | { |
---|
78 | font-weight: bold; |
---|
79 | font-size: 18px; |
---|
80 | color: #cc3300; |
---|
81 | } |
---|
82 | |
---|
83 | .Code |
---|
84 | { |
---|
85 | border: #8b4513 1px solid; |
---|
86 | padding-right: 5px; |
---|
87 | padding-left: 5px; |
---|
88 | color: #000066; |
---|
89 | font-family: 'Courier New' , Monospace; |
---|
90 | background-color: #ff9933; |
---|
91 | } |
---|