forked from maylogger/juchunko.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
46 lines (43 loc) · 901 Bytes
/
styles.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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Inter, sans-serif;
font-feature-settings:
'liga' 1,
'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
:root {
font-family: InterVariable, sans-serif;
}
}
body {
@apply !pr-[--removed-body-scroll-bar-size];
}
@layer components {
blockquote {
@apply !not-italic;
}
blockquote h3 + p {
@apply !m-0;
}
blockquote p {
@apply text-lg dark:text-white;
}
blockquote p + p {
@apply !mt-2;
}
.button {
@apply inline-flex items-center justify-center whitespace-nowrap rounded-full bg-slate-800/10 px-4 py-2 font-medium dark:bg-white/10;
}
lite-youtube {
@apply !min-w-0 !max-w-none overflow-hidden before:!hidden;
}
[data-ntpc='YouTubeEmbed'] {
@apply aspect-video;
}
article > main img {
@apply !rounded-lg;
}
}