-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (49 loc) · 1.82 KB
/
Copy pathstyles.css
File metadata and controls
59 lines (49 loc) · 1.82 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
plaintext.markdown {
size:*;
aspect: MarkdownEditor url(md-editor.tis);
background-color:#fff;
padding:4dip;
}
@const PLAIN: #FAFAE6;
@const UL: #FAE6FA;
plaintext.markdown > text { display:block; padding:0; margin:0; }
plaintext.markdown > text[region=pre] { background: @PLAIN; }
plaintext.markdown > text[region=ul] { background: @UL; }
/*plaintext.markdown > text[region=h1]::mark(offset) { background: #efefef; color:#777; }
plaintext.markdown > text[region=h2]::mark(offset) { background: #efefef; color:#777; }
plaintext.markdown > text[region=h3]::mark(offset) { background: #efefef; color:#777; }
plaintext.markdown > text[region=h4]::mark(offset) { background: #efefef; color:#777; }
plaintext.markdown > text[region=h5]::mark(offset) { background: #efefef; color:#777; }
plaintext.markdown > text[region=ol]::mark(offset) { background-color:#efefef; }
plaintext.markdown > text[region=ul]::mark(offset) { background-color:#efefef; }
plaintext.markdown > text[region=dt]::mark(offset) { background-color:#efefef; }
plaintext.markdown > text::mark(offset) { background-color:#eaeaea; }*/
htmlview {
display:block;
background:white;
padding:0.5em;
overflow: scroll-indicator;
size: *;
font-family: Courier;
}
htmlview pre { margin:0; border:1dip solid #ccc; background: @PLAIN; padding:4dip;}
htmlview code { background: @PLAIN; }
htmlview table[border] {
border-spacing: -1dip;
border:none;
margin:1em 0;
}
htmlview table[border] td {
border:1dip solid #bbb;
padding:2dip 4dip;
}
htmlview table[border] th {
border:1dip solid #bbb;
padding:2dip 4dip;
background: #eee;
//font-weight: normal;
}
htmlview dl { flow: row(dt,dd); border-spacing: 1em 4dip;}
htmlview dl dt { text-align:right; font-weight:bold; }
htmlview dl dt::after { content:":"; }
htmlview dl dd { margin:0; padding:0; width:*; }