1@import "tailwindcss";
2
3.markdown {
4 h1,
5 h2,
6 h3,
7 h4,
8 h5,
9 h6 {
10 @apply py-2 my-2 font-bold border-gray-300 dark:border-gray-700 border-b;
11 }
12 h1 {
13 @apply text-3xl;
14 }
15 h2 {
16 @apply text-2xl;
17 }
18 h3 {
19 @apply text-xl;
20 }
21 h4 {
22 @apply text-lg;
23 }
24 h5 {
25 @apply text-base;
26 }
27 h6 {
28 @apply text-sm;
29 }
30 strong {
31 @apply font-bold;
32 }
33 a {
34 @apply underline;
35 }
36 p {
37 @apply text-sm my-4;
38 }
39 ul {
40 @apply my-1 pl-6;
41 }
42 ul > li {
43 @apply text-sm;
44 }
45 ul > li:before {
46 @apply text-gray-300 dark:text-gray-700 font-bold relative right-4;
47 content: "•";
48 }
49}