blob: 0caecd1e9d9666335c4bc80681c676856faad08b (
plain)
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
60
61
62
63
64
65
66
67
|
/*
* Git:Blit Markdown CSS definition.
*/
div.markdown {
line-height: 1.4em;
}
div.markdown h1,
div.markdown h2,
div.markdown h3,
div.markdown h4,
div.markdown h5,
div.markdown h6 {
border: 0 none !important;
}
div.markdown h1 {
margin-top: 1em;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
border-bottom: 2px solid #000080 !important;
}
div.markdown h2 {
margin-top: 1em;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
border-bottom: 2px solid #000080 !important;
}
div.markdown pre {
background-color: #fdfdfd !important;
border: 1px solid #ccc !important;
border-radius: 3px;
overflow: auto;
padding: 5px;
}
div.markdown pre code {
background-color: inherit;
border: none;
padding: 0;
}
div.markdown code {
background-color: #ffffe0;
border: 1px solid orange;
border-radius: 3px;
padding: 0 0.2em;
}
div.markdown a {
text-decoration: underline;
}
div.markdown ul, div.markdown ol {
padding-left: 30px;
}
div.markdown li {
margin: 0.2em 0 0 0em; padding: 0px;
}
div.markdown em {
color: #b05000;
}
|