-
Notifications
You must be signed in to change notification settings - Fork 0
/
md_print.css
67 lines (55 loc) · 961 Bytes
/
md_print.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
/* Custom CSS for styling the markdown */
/* Set font family and size */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 12px;
}
/* Style the headings */
h1, h2, h3, h4, h5, h6 {
color: #666;
font-weight: normal;
margin-top: 1em;
margin-bottom: 0.5em;
}
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.6rem;
}
h3 {
font-size: 1.4rem;
}
/* Style the paragraphs */
p {
margin-bottom: 1em;
}
/* Style the bullet points */
ul {
margin-bottom: 1em;
padding-left: 1.5em;
}
li {
margin-bottom: 0.5em;
}
/* Style the code blocks */
pre {
background-color: #f5f5f5;
padding: 1em;
border-radius: 4px;
overflow-x: auto;
}
code {
font-family: 'Fira Code', Consolas, monospace;
}
/* Style the horizontal rule */
hr {
border: none;
border-top: 1px solid #ccc;
margin: 1em 0;
}
/* Style the links */
a {
color: #007bff;
text-decoration: none;
}