style.css
1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
a, img,
a img {
border: none;
}
.editor-buttons {
margin-left: -46px;
position: absolute;
left: 50%;
width: 95px;
top: 3px;
}
.editor-buttons a {
float: left;
display: block;
text-align: center;
width: 16px;
padding: 2px;
border: 1px solid #F0F0EE;
margin-right: 1px;
}
.editor-buttons a:hover,
.editor-buttons a.selected {
background-color: #C2CBE0;
border: 1px solid #0A246A;
}
.editor-buttons a.disabled,
.editor-buttons a.disabled:hover {
background-color: transparent;
border: 1px solid #F0F0EE;
cursor: default;
}
.editor-buttons a.disabled img {
opacity: .35;
filter: alpha(opacity=35);
-ms-filter: "alpha(opacity=35)";
}
.search-window {
background-color: #F0F0EE;
border: 1px solid #ABC6DD;
padding: 10px;
position: absolute;
right: -1px;
top: -1px;
z-index: 1000;
}
.htmlSource {
display: block;
width: 100%;
height: 100%;
font-family: 'Courier New', Courier, monospace;
font-size: 12px;
}