forked from simonlc/Markdown-CSS
-
Notifications
You must be signed in to change notification settings - Fork 433
/
markdown-alt.css
75 lines (63 loc) · 987 Bytes
/
markdown-alt.css
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
68
69
70
71
72
73
74
75
body {
line-height: 1.4em;
color: black;
padding:1em;
margin:auto;
max-width:42em;
}
li {
color: black;
}
h1,
h2,
h3,
h4,
h5,
h6 {
border: 0 none !important;
}
h1 {
margin-top: 0.5em;
margin-bottom: 0.5em;
border-bottom: 2px solid #000080 !important;
}
h2 {
margin-top: 1em;
margin-bottom: 0.5em;
border-bottom: 2px solid #000080 !important;
}
pre {
background-color: #f8f8f8;
border: 1px solid #2f6fab;
border-radius: 3px;
overflow: auto;
padding: 5px;
}
pre code {
background-color: inherit;
border: none;
padding: 0;
}
code {
background-color: #ffffe0;
border: 1px solid orange;
border-radius: 3px;
padding: 0 0.2em;
}
a {
text-decoration: underline;
}
ul, ol {
padding-left: 30px;
}
li {
margin: 0.2em 0 0 0em; padding: 0px;
}
em {
color: #b05000;
}
table.text th, table.text td {
vertical-align: top;
border-top: 1px solid #ccc;
padding:5px;
}