generated from helpful-information/crisis.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.css
104 lines (79 loc) · 1.63 KB
/
build.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
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
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
body {
@apply text-gray-900 leading-normal break-words;
}
li + li {
@apply mt-1;
}
li > p + p {
@apply mt-6;
}
strong {
@apply font-semibold;
}
a {
@apply text-blue-600 font-semibold underline;
}
a:hover {
@apply text-blue-700;
}
strong a {
@apply font-bold;
}
h1 {
@apply leading-tight border-b text-3xl font-semibold mb-4 mt-6 pb-2;
}
h2 {
@apply leading-tight border-b text-2xl font-semibold mb-4 mt-6 pb-2;
}
h3 {
@apply leading-snug text-lg font-semibold mb-4 mt-6;
}
h4 {
@apply leading-none text-base font-semibold mb-4 mt-6;
}
h5 {
@apply leading-tight text-sm font-semibold mb-4 mt-6;
}
h6 {
@apply leading-tight text-sm font-semibold text-gray-600 mb-4 mt-6;
}
blockquote {
@apply text-base border-l-4 border-gray-300 pl-4 pr-4 text-gray-600;
}
code {
@apply font-mono text-sm inline bg-gray-200 rounded px-1;
}
pre {
@apply bg-gray-100 rounded p-4;
}
pre code {
@apply block bg-transparent p-0 overflow-visible rounded-none;
}
ul {
@apply text-base pl-8 list-disc;
}
ol {
@apply text-base pl-8 list-decimal;
}
kbd {
@apply text-xs inline-block rounded border px-1 align-middle font-normal font-mono shadow;
}
table {
@apply text-base border-gray-600;
}
th {
@apply border py-1 px-3;
}
td {
@apply border py-1 px-3;
}
/* Override pygments style background color. */
.highlight pre {
@apply bg-gray-100 !important;
}
hr {
@apply .my-4;
}