-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase.css
59 lines (50 loc) · 744 Bytes
/
base.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
@tailwind base;
@tailwind components;
@tailwind utilities;
.more-link {
@apply underline;
@apply mt-2;
@apply font-sans;
@apply font-medium;
@apply text-gray-800;
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute;
width: 1px;
word-wrap: normal;
}
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5 {
@apply font-bold;
@apply my-3;
}
.post-body h2 {
@apply text-3xl;
}
.post-body h3 {
@apply text-2xl;
}
.post-body h4 {
@apply text-xl;
}
.post-body h5 {
@apply text-lg;
}
.post-body h6 {
@apply text-lg;
}
.post-body li {
@apply my-1;
}
.post-body img {
@apply my-2;
}
.post-body a {
@apply text-gray-800;
@apply font-medium;
}