source: trunk/plugins/LocalFilesEditor/editarea/plugins/charmap/css/charmap.css @ 5160

Last change on this file since 5160 was 5160, checked in by patdenice, 14 years ago

Editor
Update editarea to 0.8.2.
Remove CSS tab.
Fix jQuery path.

File size: 953 bytes
Line 
1body{
2        background-color: #F0F0EE; 
3        font: 12px monospace, sans-serif;
4}
5
6select{
7        background-color: #F9F9F9;
8        border: solid 1px #888888;
9}
10
11h1, h2, h3, h4, h5, h6{
12        margin: 0;
13        padding: 0;
14        color: #2B6FB6;
15}
16
17h1{
18        font-size: 1.5em;
19}
20
21div#char_list{
22        height: 200px;
23        overflow: auto;
24        padding: 1px;
25        border: 1px solid #0A246A;
26        background-color: #F9F9F9;
27        clear: both;
28        margin-top: 5px;
29}
30
31a.char{
32        display: block;
33        float: left;
34        width: 20px;
35        height: 20px;
36        line-height: 20px;
37        margin: 1px;
38        border: solid 1px #888888;
39        text-align: center;
40        cursor: pointer;
41}
42
43a.char:hover{
44        background-color: #CCCCCC;
45}
46
47.preview{
48        border: solid 1px #888888;
49        width: 50px;
50        padding: 2px 5px;
51        height: 35px;
52        line-height: 35px;
53        text-align:center;       
54        background-color: #CCCCCC;
55        font-size: 2em;
56        float: right;
57        font-weight: bold;
58        margin: 0 0 5px 5px;
59}
60
61#preview_code{
62        font-size: 1.1em;
63        width: 70px;
64}
Note: See TracBrowser for help on using the repository browser.