Parent [>]
1article { line-height: 1.6; word-wrap: break-word; }
2
3article h1, article h2, article h3,
4article h4, article h5, article h6 {
5  margin: 1.5rem 0 .5rem;
6  font-family: var(--font-heading);
7  font-weight: 600;
8  color: var(--emphasized);
9}
10
11article h1 { font-size: 2em; border-bottom: 1px solid var(--highlight); padding-bottom: .3em; }
12article h2 { font-size: 1.5em; border-bottom: 1px solid var(--highlight); padding-bottom: .3em; }
13article h3 { font-size: 1.25em; }
14article h4 { font-size: 1em; }
15
16article p { margin: 0 0 1rem; }
17
18article a { color: var(--blue); text-decoration: none; }
19article a:hover { text-decoration: underline; text-underline-offset: .2rem; }
20
21article strong, article b { font-weight: 600; }
22article em, article i { font-style: italic; }
23
24article ul, article ol { margin: 0 0 1rem; padding-left: 2rem; }
25article li { margin: .25rem 0; }
26article li > p { margin-top: .25rem; }
27
28article blockquote {
29  margin: 0 0 1rem;
30  padding: 0 1em;
31  color: var(--secondary);
32  border-left: .25em solid var(--highlight);
33}
34article blockquote > :first-child { margin-top: 0; }
35article blockquote > :last-child { margin-bottom: 0; }
36
37article hr {
38  height: .25em;
39  margin: 1.5rem 0;
40  padding: 0;
41  border: 0;
42  background-color: var(--highlight);
43}
44
45article img { max-width: 100%; box-sizing: content-box; }
46
47article code {
48  font-family: var(--font-mono);
49  font-size: .875em;
50  padding: .2em .4em;
51  background-color: var(--highlight);
52  border-radius: 4px;
53  white-space: break-spaces;
54}
55
56article pre {
57  font-family: var(--font-mono);
58  font-size: .875em;
59  line-height: 1.45;
60  padding: 1rem;
61  margin: 0 0 1rem;
62  overflow-x: auto;
63  min-width: 0;
64  background-color: var(--highlight);
65  border-radius: 6px;
66}
67
68article pre code {
69  font-size: 100%;
70  padding: 0;
71  background: transparent;
72  border-radius: 0;
73  white-space: pre;
74}
75
76article table {
77  border-spacing: 0;
78  border-collapse: collapse;
79  display: block;
80  width: max-content;
81  max-width: 100%;
82  overflow-x: auto;
83  margin: 0 0 1rem;
84}
85
86article table th {
87  font-weight: 600;
88}
89
90article table th,
91article table td {
92  padding: 6px 13px;
93  border: 1px solid var(--highlight);
94}
95
96article table tr { border-top: 1px solid var(--highlight); }
97article table tr:nth-child(2n) { background-color: var(--highlight); }