-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.css
70 lines (56 loc) · 1.2 KB
/
tailwind.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
p {
@apply mb-4;
}
ul {
list-style-type: disc;
}
ol {
list-style-type: decimal;
}
ul, ol {
margin-bottom: 1rem;
padding-left: 2.5rem;
}
blockquote {
margin: 1.25em 0;
padding: 0 1em;
color: #6a737d;
border-left: .25em solid #dfe2e5;
}
code, kbd, pre, samp {
font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}
.post-content a {
@apply underline underline-offset-4;
}
.post-content img {
@apply my-8 mx-auto;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
}
.post-content li {
@apply mt-2 text-base;
}
.post-content h1 {
@apply font-serif font-bold leading-tight text-green-700 text-2xl;
}
.post-content h2 {
@apply font-serif font-bold leading-tight text-green-700 text-xl mt-5 mb-3;
}
.post-content h3 {
@apply font-serif font-bold leading-tight text-green-700 text-lg mt-5 mb-3;
}
.post-content hr {
@apply my-8 border-neutral-400;
}
.post-content p {
@apply text-base;
}
.post-content .emailonly {
@apply hidden;
}
}
.grecaptcha-badge { visibility: hidden; }