forked from overextended/overextended.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (82 loc) · 1.93 KB
/
index.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
@tailwind components;
@tailwind utilities;
html,
body,
#__next {
width: 100%;
height: 100%;
}
a {
text-decoration: none !important;
}
ul.nx-list-disc {
margin-top: 0 !important;
list-style-type: disc;
}
ul.nx-list-disc li li {
list-style-type: circle;
}
ul.nx-list-disc li li li {
list-style-type: square;
}
ol.nx-list-decimal {
margin-top: 0 !important;
}
:root {
--docsearch-highlight-color: #0ea5e9;
--docsearch-primary-color: #0ea5e9;
}
.DocSearch-Modal {
@apply !rounded-md shadow-none dark:bg-neutral-800;
}
.DocSearch-Button {
@apply m-0 w-52 rounded-md bg-neutral-200 text-gray-800 hover:bg-neutral-200 dark:bg-neutral-800 dark:text-gray-400;
}
.DocSearch-Search-Icon {
@apply !text-gray-800 dark:!text-gray-400;
}
.DocSearch-Button-Key {
@apply bg-gray-400 !bg-none text-gray-800 shadow-none dark:!bg-neutral-900 dark:text-neutral-500;
}
.DocSearch-Commands-Key {
@apply bg-gray-400 !bg-none text-gray-800 shadow-none dark:!bg-neutral-900 dark:text-neutral-500;
}
.DocSearch-Container {
@apply dark:bg-black/50;
}
.DocSearch-Input {
@apply text-gray-400 outline-none focus-visible:!ring-transparent focus-visible:ring-offset-0 dark:bg-transparent;
}
.DocSearch-Form {
@apply shadow-blue-500 dark:bg-neutral-800;
}
.DocSearch-SearchBar {
@apply rounded-md dark:bg-neutral-800;
}
.DocSearch-Dropdown {
@apply dark:bg-neutral-800;
}
.DocSearch-Footer {
@apply shadow-none dark:bg-neutral-800;
}
.DocSearch-Hit-source {
@apply dark:bg-neutral-800;
}
.DocSearch-Hit {
@apply [&>a]:aria-selected:!bg-[var(--docsearch-primary-color)];
}
.DocSearch-Hit > a {
@apply shadow-none dark:bg-neutral-700;
}
.DocSearch-Hit-title {
@apply dark:text-neutral-200;
}
.DocSearch-Hit-icon {
@apply dark:text-neutral-200;
}
.DocSearch-Dropdown::-webkit-scrollbar-thumb {
@apply dark:border-neutral-800 dark:bg-neutral-600 dark:hover:bg-neutral-500;
}
.nextra-code-block pre {
@apply dark:!bg-zinc-800;
}