File size: 3,276 Bytes
8766bc5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
.prose {
	font-weight: var(--prose-text-weight);
	font-size: var(--text-md);
}

.prose * {
	color: var(--body-text-color);
}

.prose p {
	margin-bottom: var(--spacing-sm);
	line-height: var(--line-lg);
}

/* headings
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5 {
	margin: var(--spacing-xxl) 0 var(--spacing-lg);
	font-weight: var(--prose-header-text-weight);
	line-height: 1.3;
	color: var(--body-text-color);
}

.prose > *:first-child {
	margin-top: 0;
}

.prose h1 {
	margin-top: 0;
	font-size: var(--text-xxl);
}

.prose h2 {
	font-size: var(--text-xl);
}

.prose h3 {
	font-size: var(--text-lg);
}

.prose h4 {
	font-size: 1.1em;
}

.prose h5 {
	font-size: 1.05em;
}

/* lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.prose ul {
	list-style: circle inside;
}
.prose ol {
	list-style: decimal inside;
}

.prose ul > p,
.prose li > p {
	display: inline-block;
}
.prose ol,
.prose ul {
	margin-top: 0;
	padding-left: 0;
}
.prose ul ul,
.prose ul ol,
.prose ol ol,
.prose ol ul {
	margin: 0.5em 0 0.5em 3em;
	font-size: 90%;
}
.prose li {
	margin-bottom: 0.5em;
}

/* code
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.prose th,
.prose td {
	border-bottom: 1px solid #e1e1e1;
	padding: 12px 15px;
	text-align: left;
}
.prose th:first-child,
.prose td:first-child {
	padding-left: 0;
}
.prose th:last-child,
.prose td:last-child {
	padding-right: 0;
}

/* spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.prose button,
.prose .button {
	margin-bottom: var(--spacing-sm);
}
.prose input,
.prose textarea,
.prose select,
.prose fieldset {
	margin-bottom: var(--spacing-sm);
}
.prose pre,
.prose blockquote,
.prose dl,
.prose figure,
.prose table,
.prose p,
.prose ul,
.prose ol,
.prose form {
	margin-bottom: var(--spacing-md);
}

/* links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.prose a {
	color: var(--link-text-color);
	text-decoration: underline;
}

.prose a:visited {
	color: var(--link-text-color-visited);
}

.prose a:hover {
	color: var(--link-text-color-hover);
}
.prose a:active {
	color: var(--link-text-color-active);
}

/* misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.prose hr {
	margin-top: 3em;
	margin-bottom: 3.5em;
	border-width: 0;
	border-top: 1px solid #e1e1e1;
}

.prose blockquote {
	margin: var(--size-6) 0 !important;
	border-left: 5px solid var(--border-color-primary);
	padding-left: var(--size-2);
}

.prose:last-child {
	margin-bottom: 0 !important;
}