-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathglobal.css
54 lines (42 loc) · 764 Bytes
/
global.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
@apply font-sans text-gray-700;
}
h1 {
@apply text-4xl font-bold;
}
*:not(#rendered) > h2 {
@apply text-3xl font-bold mb-6 text-center;
}
h3 {
@apply text-2xl font-bold mb-4;
}
p {
@apply mt-3;
}
#rendered ul {
@apply list-disc;
}
#rendered ol {
@apply list-decimal;
}
code {
@apply bg-gray-100 p-1 rounded-md;
}
a {
@apply text-blue-600;
}
a:hover {
@apply underline;
}
}
a.anchorjs-link:hover {
@apply no-underline;
}
#template h2 > a.anchorjs-link,
#faq h2 > a.anchorjs-link {
@apply text-blue-400;
}