Subversion Repositories Applications.papyrus

Rev

Rev 521 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
431 ddelon 1
/*
2
 * FCKeditor - The text editor for internet
875 ddelon 3
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
431 ddelon 4
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
7
 *
8
 * For further information visit:
9
 * 		http://www.fckeditor.net/
10
 *
521 ddelon 11
 * "Support Open Source software. What about a donation today?"
12
 *
431 ddelon 13
 * File Name: fck_editorarea.css
14
 * 	This is the default CSS file used by the editor area. It defines the
15
 * 	initial font of the editor and background color.
16
 *
17
 * 	A user can configure the editor to use another CSS file. Just change
18
 * 	the value of the FCKConfig.EditorAreaCSS key in the configuration
19
 * 	file.
20
 *
21
 * File Authors:
22
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
23
 */
24
 
875 ddelon 25
/*
26
    The "body" styles should match your editor web site, mainly regarding
27
    background color and font family and size.
28
*/
29
 
431 ddelon 30
body
31
{
875 ddelon 32
	background-color: #ffffff;
431 ddelon 33
	padding: 5px 5px 5px 5px;
34
	margin: 0px;
35
}
36
 
875 ddelon 37
body, td
38
{
39
	font-family: Arial, Verdana, Sans-Serif;
40
	font-size: 12px;
41
}
42
 
43
a
44
{
45
	color: #0000FF !important;	/* For Firefox... mark as important, otherwise it becomes black */
46
}
47
 
431 ddelon 48
/*
49
	Just uncomment the following block if you want to avoid spaces between
50
	paragraphs. Remember to apply the same style in your output front end page.
51
*/
875 ddelon 52
 
431 ddelon 53
/*
54
P, UL, LI
55
{
56
	margin-top: 0px;
57
	margin-bottom: 0px;
58
}
59
*/
60
 
875 ddelon 61
/*
62
    The following are some sample styles used in the "Styles" toolbar command.
63
    You should instead remove them, and include the styles used by the site
64
    you are using the editor in.
65
*/
66
 
431 ddelon 67
.Bold
68
{
69
	font-weight: bold;
70
}
71
 
72
.Title
73
{
74
	font-weight: bold;
75
	font-size: 18px;
76
	color: #cc3300;
77
}
78
 
79
.Code
80
{
81
	border: #8b4513 1px solid;
82
	padding-right: 5px;
83
	padding-left: 5px;
84
	color: #000066;
85
	font-family: 'Courier New' , Monospace;
86
	background-color: #ff9933;
87
}