Project

General

Profile

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
 * 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
 * Uncomment the following block, or only selected lines if appropriate,
68
 * if you have some style items that would break the styles combo box.
69
 * You can also write other CSS overrides inside the style block below
70
 * as needed and they will be applied to inside the style combo only.
71
 */
72

    
73
/*
74
.SC_Item *, .SC_ItemSelected *
75
{
76
	margin: 0px !important;
77
	padding: 0px !important;
78
	text-indent: 0px !important;
79
	clip: auto !important;
80
	position: static !important;
81
}
82
*/
83

    
84
/**
85
 * The following are some sample styles used in the "Styles" toolbar command.
86
 * You should instead remove them, and include the styles used by the site
87
 * you are using the editor in.
88
 */
89

    
90
.Bold
91
{
92
	font-weight: bold;
93
}
94

    
95
.Title
96
{
97
	font-weight: bold;
98
	font-size: 18px;
99
	color: #cc3300;
100
}
101

    
102
.Code
103
{
104
	border: #8b4513 1px solid;
105
	padding-right: 5px;
106
	padding-left: 5px;
107
	color: #000066;
108
	font-family: 'Courier New' , Monospace;
109
	background-color: #ff9933;
110
}
(1-1/3)