/public/javascripts/tinymce-3.5.7/examples/css/content.css
CSS | 105 lines | 80 code | 22 blank | 3 comment | 0 complexity | 54a2cd37f6dcb2d411d6e75d8044308e MD5 | raw file
Possible License(s): AGPL-1.0
1body {
2 background-color: #FFFFFF;
3 font-family: Verdana, Arial, Helvetica, sans-serif;
4 font-size: 10px;
5 scrollbar-3dlight-color: #F0F0EE;
6 scrollbar-arrow-color: #676662;
7 scrollbar-base-color: #F0F0EE;
8 scrollbar-darkshadow-color: #DDDDDD;
9 scrollbar-face-color: #E0E0DD;
10 scrollbar-highlight-color: #F0F0EE;
11 scrollbar-shadow-color: #F0F0EE;
12 scrollbar-track-color: #F5F5F5;
13}
14
15td {
16 font-family: Verdana, Arial, Helvetica, sans-serif;
17 font-size: 10px;
18}
19
20pre {
21 font-family: Verdana, Arial, Helvetica, sans-serif;
22 font-size: 10px;
23}
24
25.example1 {
26 font-weight: bold;
27 font-size: 14px
28}
29
30.example2 {
31 font-weight: bold;
32 font-size: 12px;
33 color: #FF0000
34}
35
36.tablerow1 {
37 background-color: #BBBBBB;
38}
39
40thead {
41 background-color: #FFBBBB;
42}
43
44tfoot {
45 background-color: #BBBBFF;
46}
47
48th {
49 font-family: Verdana, Arial, Helvetica, sans-serif;
50 font-size: 13px;
51}
52
53/* Basic formats */
54
55.bold {
56 font-weight: bold;
57}
58
59.italic {
60 font-style: italic;
61}
62
63.underline {
64 text-decoration: underline;
65}
66
67/* Global align classes */
68
69.left {
70 text-align: inherit;
71}
72
73.center {
74 text-align: center;
75}
76
77.right {
78 text-align: right;
79}
80
81.full {
82 text-align: justify
83}
84
85/* Image and table specific aligns */
86
87img.left, table.left {
88 float: left;
89 text-align: inherit;
90}
91
92img.center, table.center {
93 margin-left: auto;
94 margin-right: auto;
95 text-align: inherit;
96}
97
98img.center {
99 display: block;
100}
101
102img.right, table.right {
103 float: right;
104 text-align: inherit;
105}