Ticket #4075: custom-content.css

File custom-content.css, 2.7 KB (added by Garry Yao, 15 years ago)

custom content css

Line 
1/*
2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3 * Copyright (C) 2003-2009 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 * Styles used by the XHTML 1.1 sample page (sample14.html).
22 */
23
24/**
25 * Basic definitions for the editing area.
26 */
27body
28{
29        background-color: #ffffff;
30        padding: 5px 5px 5px 5px;
31        margin: 0px;
32}
33
34body, td
35{
36        font-family: Arial, Verdana, sans-serif;
37        font-size: 12px;
38}
39
40a[href]
41{
42        color: #0000FF !important; /* For Firefox... mark as important, otherwise it becomes black */
43}
44
45/**
46 * Core styles.
47 */
48
49.Bold
50{
51        font-weight: bold;
52}
53
54.Italic
55{
56        font-style: italic;
57}
58
59.Underline
60{
61        text-decoration: underline;
62}
63
64.StrikeThrough
65{
66        text-decoration: line-through;
67}
68
69.Subscript
70{
71        vertical-align: sub;
72        font-size: smaller;
73}
74
75.Superscript
76{
77        vertical-align: super;
78        font-size: smaller;
79}
80
81/**
82 * Font faces.
83 */
84
85.FontComic
86{
87        font-family: 'Comic Sans MS';
88}
89
90.FontCourier
91{
92        font-family: 'Courier New';
93}
94
95.FontTimes
96{
97        font-family: 'Times New Roman';
98}
99
100/**
101 * Font sizes.
102 */
103
104.FontSmaller
105{
106        font-size: smaller;
107}
108
109.FontLarger
110{
111        font-size: larger;
112}
113
114.FontSmall
115{
116        font-size: 8pt;
117}
118
119.FontBig
120{
121        font-size: 14pt;
122}
123
124.FontDouble
125{
126        font-size: 200%;
127}
128
129/**
130 * Font colors.
131 */
132.FontColor1
133{
134        color: #ff9900;
135}
136
137.FontColor2
138{
139        color: #0066cc;
140}
141
142.FontColor3
143{
144        color: #ff0000;
145}
146
147.FontColor1BG
148{
149        background-color: #ff9900;
150}
151
152.FontColor2BG
153{
154        background-color: #0066cc;
155}
156
157.FontColor3BG
158{
159        background-color: #ff0000;
160}
161
162/**
163 * Indentation.
164 */
165
166.Indent1
167{
168        margin-left: 40px;
169}
170
171.Indent2
172{
173        margin-left: 80px;
174}
175
176.Indent3
177{
178        margin-left: 120px;
179}
180
181/**
182 * Alignment.
183 */
184
185.JustifyLeft
186{
187        text-align: left;
188}
189
190.JustifyRight
191{
192        text-align: right;
193}
194
195.JustifyCenter
196{
197        text-align: center;
198}
199
200.JustifyFull
201{
202        text-align: justify;
203}
204
205/**
206 * Other.
207 */
208
209code
210{
211        font-family: courier, monospace;
212        background-color: #eeeeee;
213        padding-left: 1px;
214        padding-right: 1px;
215        border: #c0c0c0 1px solid;
216}
217
218kbd
219{
220        padding: 0px 1px 0px 1px;
221        border-width: 1px 2px 2px 1px;
222        border-style: solid;
223}
224
225blockquote
226{
227        color: #808080;
228}
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy