blob: 9da9261b63a1eb2a845598a914693b121be8f52c (
plain) (
blame)
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
|
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
@apply text-gray-800;
}
h1, h2, h3, h4, h5, h6, strong {
@apply text-gray-900;
}
article > p, ul, ol {
@apply text-lg tracking-wide;
}
article > div, p, ul, ol, pre:not(:last-child) {
@apply mb-6;
}
article > ol, ul {
@apply list-disc ml-8;
}
article > li:not(:last-of-type) {
@apply mb-2;
}
article p > code {
@apply p-1/2 bg-gray-400;
}
article > h2 {
@apply text-2xl my-8 font-bold text-black;
}
a {
@apply border-b border-black text-black;
}
/* purgecss ignore */
pre.chroma {
@apply p-4 overflow-x-auto font-mono text-lg;
}
@screen md {
/* purgecss ignore */
div.highlight {
@apply -mx-12;
}
}
|