-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.postcss
More file actions
68 lines (52 loc) · 1.21 KB
/
main.postcss
File metadata and controls
68 lines (52 loc) · 1.21 KB
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
@import url("https://fonts.googleapis.com/css2?family=");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&Space+Grotesk:wght@300..700&display=swap");
/* Prose Code */
* {
@apply prose-code:rounded-md;
@apply prose-code:px-2;
@apply prose-code:py-1;
@apply prose-code:text-slate-900;
@apply prose-code:bg-slate-100;
@apply dark:prose-code:text-slate-100;
@apply dark:prose-code:bg-slate-800;
}
code::before,
code::after {
content: none !important;
}
/**
* Documentation Formatting (Globally Applied)
**/
.docs {
@apply flex;
@apply w-full;
@apply h-full;
.content {
@apply flex;
@apply w-full;
@apply h-full;
@apply pt-16;
@apply dark:bg-slate-950;
main {
@apply flex;
@apply h-full;
@apply overflow-auto;
@apply px-16;
@apply mx-10;
article {
/* Prose */
@apply prose;
@apply prose-slate;
@apply dark:prose-invert;
@apply py-8;
@apply max-w-3xl;
:where(a) {
@apply no-underline;
}
}
aside {
@apply dark:text-white;
}
}
}
}