-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
217 lines (170 loc) · 2.98 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url("https://rsms.me/inter/inter.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono%3Aital%2Cwght%400%2C100%3B0%2C200%3B0%2C300%3B0%2C400%3B0%2C500%3B0%2C600%3B0%2C700%3B1%2C100%3B1%2C200%3B1%2C300%3B1%2C400%3B1%2C500%3B1%2C600%3B1%2C700&display=swap");
:root {
color-scheme: dark;
}
html {
@apply scroll-smooth;
&,
& > body {
@apply min-h-screen;
}
&.light {
&,
& > body {
@apply bg-white;
}
}
@media (prefers-color-scheme: light) {
&,
& > body {
@apply bg-white;
}
}
& > body {
@apply flex flex-col overflow-x-hidden text-neutral-100;
& * {
@apply transition-all;
&::selection {
@apply bg-amber-300 text-neutral-900;
}
}
& h1,
& h2,
& h3,
& h4,
& h5,
& h6,
& p,
& span {
& a {
@apply text-cyan-500 underline;
&:hover {
@apply no-underline;
}
}
}
& h1 {
@apply text-5xl;
}
& h2 {
@apply text-4xl;
}
& h3 {
@apply text-3xl;
}
& h4 {
@apply text-2xl;
}
& h5 {
@apply text-xl;
}
& h6 {
@apply text-lg;
}
& .markdown {
& h1,
& h2,
& h3,
& h4,
& h5,
& h6 {
@apply mt-8;
}
& p {
@apply mt-4 mb-4 first:mt-0 last:mb-0;
}
& a {
@apply text-cyan-500 underline;
&:hover {
@apply no-underline;
}
}
& ul {
@apply list-disc pl-6 flex flex-col gap-2 mt-2 mb-2;
}
& ol {
@apply list-decimal pl-6 flex flex-col gap-2 mt-2 mb-2;
}
& code {
@apply bg-neutral-500 px-1 py-0.5 rounded text-sm break-words;
}
& pre {
@apply p-4 rounded text-sm relative mb-4 last:mb-0;
& > code {
@apply bg-transparent px-0 py-0;
}
}
& blockquote {
quotes: "\201C""\201D";
@apply bg-black/25 p-4 rounded relative mb-4;
&:before {
content: open-quote;
@apply text-6xl absolute -left-3 -top-3;
}
&:after {
content: close-quote;
@apply text-6xl leading-[0] absolute -right-3 -bottom-3;
}
}
& table {
@apply border-separate border-spacing-0 mt-4;
border-spacing: 0px;
& > thead {
@apply bg-neutral-700;
}
& > thead,
& > tbody {
& > tr {
& > th {
@apply border-t;
}
& > th,
& > td {
@apply border-b border-r border-neutral-500 p-4 first:border-l;
}
&:first-child {
& > th {
&:first-child {
@apply rounded-tl;
}
&:last-child {
@apply rounded-tr;
}
}
}
&:last-child {
& > td {
&:first-child {
@apply rounded-bl;
}
&:last-child {
@apply rounded-br;
}
}
}
}
}
}
}
& .button {
background-position: 0% 100%;
background-size: 400% 100%;
&:hover {
background-position: 100% 100%;
}
}
}
}
@layer base {
}
@layer components {
}
@layer utilities {
}