-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
86 lines (72 loc) · 1.25 KB
/
main.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
@apply !leading-tight md:!leading-tight;
@apply font-heading font-bold;
@apply mb-4 last:mb-0;
@apply text-2xl md:text-3xl;
@apply text-gray-800;
}
h1,
.h1 {
@apply text-[30px] 2xs:text-[36px] xs:text-[48px] md:text-[64px];
@apply mb-8 last:mb-0 md:mb-12;
}
h2,
.h2 {
@apply text-[30px] xs:text-[36px] md:text-[48px];
@apply mb-6 last:mb-0;
}
h3,
.h3 {
@apply text-[20px] xs:text-[24px] md:text-[30px];
@apply mb-6 last:mb-0;
}
p,
ul,
blockquote {
@apply text-base !leading-1.75 md:text-lg;
}
a {
@apply cursor-pointer transition-colors duration-200;
}
strong {
@apply text-gray-800;
}
.content p {
@apply mb-8 last:mb-0;
}
.content ul {
@apply mb-8 last:mb-0;
}
.content a {
@apply font-semibold text-emerald-400 underline underline-offset-4 hover:text-emerald-500;
}
}
@layer utilities {
.center {
@apply flex items-center justify-center;
}
.my-section {
@apply my-16 md:my-24;
}
.mt-section {
@apply mt-16 md:mt-24;
}
.mb-section {
@apply mb-16 md:mb-24;
}
}