Project

General

Profile

1
/*
2
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
For licensing, see LICENSE.html or http://ckeditor.com/license
4
*/
5

    
6
body
7
{
8
    font-family: Arial, Verdana, sans-serif;
9
    font-size: 12px;
10
    color: #222;
11
    /* Remove the background color to make it transparent */
12
    background-color: #fff;
13
}
14

    
15
html
16
{
17
    /* #3658: [IE6] Editor document has horizontal scrollbar on long lines
18
    To prevent this misbehavior, we show the scrollbar always */
19
    _overflow-y: scroll
20
}
21

    
22
img:-moz-broken
23
{
24
    -moz-force-broken-image-icon : 1;
25
    width : 24px;
26
    height : 24px;
27
}
28
img, input, textarea
29
{
30
    cursor: default;
31
}
32

    
33
.indent1 {
34
  margin-left: 40px;
35
}
36
.indent2 {
37
  margin-left: 80px;
38
}
39
.indent3 {
40
  margin-left: 120px;
41
}
42
.indent4 {
43
  margin-left: 160px;
44
}
45
.left {
46
  text-align: left;
47
}
48
.right {
49
  text-align: right;
50
}
51
.center {
52
  text-align: center;
53
}
54
.justify {
55
  text-align: justify;
56
}
57
.ibimage_left {
58
  float: left;
59
}
60
.ibimage_right {
61
  float: right;
62
}
63
.marker-red { color :#cc0000; }
64
.marker-blue { color : #000099; }
65
.Yellow { color : #ffff33; }
66
.Lime { color : #339900; }
67

    
68
td { white-space :normal; }
(1-1/5)