-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkdown-pdf.css
More file actions
35 lines (27 loc) · 920 Bytes
/
markdown-pdf.css
File metadata and controls
35 lines (27 loc) · 920 Bytes
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
/* This file is meant for the "Markdown PDF" extension:
https://marketplace.visualstudio.com/items?itemName=yzane.markdown-pdf
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Condensed';
}
body {
font-family: 'Roboto Slab';
}
li {
list-style: square;
}
ul ul {
padding-left: 20px;
}
a {
font-family: 'Roboto Condensed';
color: blue;
}
code {
font-family: 'Roboto Mono';
font-size: 80%;
}
p code {
color: darkblue !important;
}