-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
172 lines (143 loc) · 4 KB
/
style.css
File metadata and controls
172 lines (143 loc) · 4 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
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
/* Manifest docs — custom brand overrides */
/* Prevent hash-based scroll jumps on tab clicks */
[role="tabpanel"],
[role="tabpanel"]:target {
scroll-margin-top: 9999px !important;
scroll-snap-margin-top: 9999px !important;
}
[id*="cloud"], [id*="self-hosted"], [id*="quick-install"],
[id*="docker-compose"], [id*="docker-run"] {
scroll-margin-top: 9999px !important;
}
/* Logo height */
#sidebar img[alt*="logo" i],
#sidebar img[src*="logo"],
nav img[src*="logo"],
a[href="https://manifest.build"] img {
height: 30px !important;
min-height: 30px !important;
max-height: 30px !important;
width: auto !important;
}
/* Warm sidebar background */
#sidebar {
--tw-bg-opacity: 1;
}
/* Accent color on anchor links */
.nav-anchor {
border-color: #0891b2;
}
/* Inline links: bold, dark, underlined — no blue border */
.prose a,
.mdx-content a:not([role]):not([class*="card"]):not([class*="nav"]):not([class*="tab"]):not([class*="button"]) {
color: #111827 !important;
font-weight: 600 !important;
text-decoration: underline !important;
text-decoration-color: #111827 !important;
text-underline-offset: 2px;
border-bottom: none !important;
box-shadow: none !important;
}
.prose a:hover,
.mdx-content a:not([role]):not([class*="card"]):not([class*="nav"]):not([class*="tab"]):not([class*="button"]):hover {
color: #0891b2 !important;
text-decoration-color: #0891b2 !important;
border-bottom: none !important;
box-shadow: none !important;
}
.dark .prose a,
.dark .mdx-content a:not([role]):not([class*="card"]):not([class*="nav"]):not([class*="tab"]):not([class*="button"]) {
color: #f3f4f6 !important;
text-decoration-color: #f3f4f6 !important;
border-bottom: none !important;
box-shadow: none !important;
}
.dark .prose a:hover,
.dark .mdx-content a:not([role]):not([class*="card"]):not([class*="nav"]):not([class*="tab"]):not([class*="button"]):hover {
color: #22d3ee !important;
text-decoration-color: #22d3ee !important;
border-bottom: none !important;
box-shadow: none !important;
}
/* Card hover accent */
.card:hover {
border-color: #22d3ee;
}
/* Teal tint on inline code */
.mdx-content :not(pre) > code {
color: #0891b2;
}
/* Steps titles: bold with tighter spacing */
.step p.font-semibold,
.step .prose > p:first-child {
font-weight: 700 !important;
margin-bottom: 0.25rem !important;
}
/* Steps timeline: darker connector line */
.step > div.absolute.w-px {
background-color: #374151 !important;
}
/* Steps timeline: dark number circles (match text color) */
.step .rounded-full {
background-color: #1f2937 !important;
color: #ffffff !important;
}
/* Dark mode: light circles */
.dark .step > div.absolute.w-px {
background-color: #d1d5db !important;
}
.dark .step .rounded-full {
background-color: #e5e7eb !important;
color: #111827 !important;
}
/* Article footer prev/next navigation */
div.rounded-2xl.bg-gray-50\/80 {
background-color: #e5e7eb !important;
}
div.rounded-2xl .w-px.bg-gray-100 {
background-color: #9ca3af !important;
}
div.rounded-2xl .text-gray-500,
div.rounded-2xl .text-gray-300,
div.rounded-2xl span {
color: #374151 !important;
}
div.rounded-2xl svg.text-gray-300 {
color: #374151 !important;
}
.dark div.rounded-2xl {
background-color: #1f2937 !important;
}
.dark div.rounded-2xl .w-px {
background-color: #4b5563 !important;
}
.dark div.rounded-2xl .text-gray-400,
.dark div.rounded-2xl .text-gray-700,
.dark div.rounded-2xl span {
color: #d1d5db !important;
}
.dark div.rounded-2xl svg.text-gray-700 {
color: #d1d5db !important;
}
/* Hide Mintlify footer branding */
#footer a[href*="mintlify"] {
display: none;
}
/* Callouts: tighter spacing & smaller radii */
.callout {
border-radius: 6px !important;
padding: 10px 14px !important;
margin-top: 12px !important;
margin-bottom: 12px !important;
}
.callout pre {
border-radius: 4px !important;
margin-top: 8px !important;
margin-bottom: 8px !important;
}
.callout p:last-child {
margin-top: 0 !important;
}
.callout .code-block {
margin-bottom: 0.5rem !important;
}