Project

General

Profile

1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2008 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: -moz-hyperlinktext !important;		/* For Firefox... mark as important, otherwise it becomes black */
50
	text-decoration: -moz-anchor-decoration;	/* For Firefox 3, otherwise no underline will be used */
51
}
52

    
53
/*
54
	Just uncomment the following block if you want to avoid spaces between
55
	paragraphs. Remember to apply the same style in your output front end page.
56
*/
57

    
58
/*
59
p, ul, li
60
{
61
	margin-top: 0px;
62
	margin-bottom: 0px;
63
}
64
*/
65

    
66
/*
67
    The following are some sample styles used in the "Styles" toolbar command.
68
    You should instead remove them, and include the styles used by the site
69
    you are using the editor in.
70
*/
71

    
72
.Bold
73
{
74
	font-weight: bold;
75
}
76

    
77
.Title
78
{
79
	font-weight: bold;
80
	font-size: 18px;
81
	color: #cc3300;
82
}
83

    
84
.Code
85
{
86
	border: #8b4513 1px solid;
87
	padding-right: 5px;
88
	padding-left: 5px;
89
	color: #000066;
90
	font-family: 'Courier New' , Monospace;
91
	background-color: #ff9933;
92
}
(1-1/4)