blob: 06b577887e87cb95820558f9c1678d97c1adf0c1 (
plain) (
blame)
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
|
html, body {
overflow: visible;
}
.navigation {
position: relative;
}
.modify, .switch, .settings, .preview {
display: none;
}
.prettyprint, .preview {
position: absolute;
border: none !important;
overflow: visible;
}
iframe.preview {
background: #fff;
width: 100%;
height: 100%;
}
.icon, .italic, .bold, .header {
font-size: 20px;
}
.italic:after {
content: "I"
}
.bold:after {
content: "B"
}
.header:after {
content: "H"
}
|