source: companies/serpro/news_admin/templates/celepar/fckeditor/editor/css/fck_editorarea.css @ 903

Revision 903, 1.8 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1/*
2 * FCKeditor - The text editor for internet
3 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
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 *
11 * "Support Open Source software. What about a donation today?"
12 *
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
25/*
26    The "body" styles should match your editor web site, mainly regarding
27    background color and font family and size.
28*/
29
30body
31{
32        background-color: #ffffff;
33        padding: 5px 5px 5px 5px;
34        margin: 0px;
35}
36
37body, td
38{
39        font-family: Arial, Verdana, Sans-Serif;
40        font-size: 12px;
41}
42
43a
44{
45        color: #0000FF !important;      /* For Firefox... mark as important, otherwise it becomes black */
46}
47
48h3
49{
50        color: #000080;
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/*
59P, 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}
Note: See TracBrowser for help on using the repository browser.