-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheatsheet.css
66 lines (59 loc) · 1.21 KB
/
cheatsheet.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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
body {
padding: 0; /* use custom margin */
font-family: 'Roboto Condensed', sans-serif;
font-weight: normal;
font-size: 7pt;
line-height: 0.9;
column-gap: 0.1in;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Condensed', sans-serif;
font-weight: bold;
} h1, h2, h3, h4, h5, h6, p, ul, ol {
margin-block-start: 0.4em;
margin-block-end: 0.4em;
}
h1 {
font-size: 11pt;
padding-bottom: 0.2em;
} h2 {
font-size: 10pt;
} h3 {
font-size: 9pt;
} h4 {
font-size: 8pt;
} h5 {
font-size: 7pt;
} h6 {
font-size: 7pt;
color: #777;
}
small {
font-size: 5pt;
}
ul {
padding-inline-start: 14px;
} ol {
padding-inline-start: 10px;
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td {
padding: 2px;
} table {
border-spacing: 0;
}
code {
font-family: 'JetBrains Mono', monospace;
font-weight: normal;
font-size: 6pt;
line-height: 0.9;
} pre:not(.hljs), pre.hljs code > div {
padding: 2pt;
} pre:not(.hljs) {
padding: 4pt;
line-height: 0.9;
}