Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyle.css
More file actions
Latest commit
254 lines (221 loc) · 5.98 KB
/
Copy pathstyle.css
File metadata and controls
254 lines (221 loc) · 5.98 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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/* global lowercase text styling */
* {
text-transform: lowercase !important;
}
/* preserve code formatting - exclude code blocks and inline code */
code,
pre,
pre*,
code*,
.code-groupcode,
.code-grouppre,
[class*="highlight"] code,
[class*="highlight"] pre,
kbd {
text-transform: none !important;
}
/* remove all rounded corners site-wide */
*,
*::before,
*::after {
border-radius:0!important;
}
/* pricing calculator button styling */
:root {
--btn-selected-bg:#CAB168;
--btn-border:#000;
}
/* sidebar section headings — recede to a quiet "eyebrow" so they read as
structure, distinct from the clickable page links below them. mintlify
renders the group title as .sidebar-group-header (the old #sidebar-title id
no longer exists), and the inner h3 inherits font/size/color from it. */
#navigation-items .sidebar-group-header {
font-weight:300!important; /* Inter Light */
font-size:11px!important;
}
html.dark#navigation-items .sidebar-group-header {
color:rgba(237,238,240,0.55) !important;
}
/* divider + breathing room above each section after the first (non-first
sections are wrapped by mintlify in a margin-top div) */
#navigation-itemsdiv[class*="mt-"] > .sidebar-group-header {
margin-top:0.75rem;
padding-top:1rem;
border-top:1px solid rgba(33,34,37,0.1);
}
html.dark#navigation-itemsdiv[class*="mt-"] > .sidebar-group-header {
border-top-color:rgba(237,238,240,0.1);
}
/* move nested nav arrows to the right */
#navigation-itemsli[data-title] >button.group,
#navigation-itemsli[data-title] >div.group {
width:100%!important;
flex-direction: row-reverse !important;
justify-content: space-between !important;
}
#navigation-itemsli[data-title] >button.group>svg,
#navigation-itemsli[data-title] >div.group>svg {
margin-right:0!important;
margin-left:0!important;
}
/* enhanced table styling - matches code group design */
.prosetable,
articletable,
table {
width:100%!important;
border-collapse: separate !important;
border-spacing:0!important;
border-radius:0!important;
overflow: hidden !important;
border:1px solid rgb(var(--gray-950) /0.1) !important;
background-color:rgb(249,250,251) !important;
margin:0!important;
display: table !important;
}
/* table headers */
.prosetabletheadth,
articletabletheadth,
tabletheadth {
padding:10px16px!important;
text-align: left !important;
font-weight:600!important;
font-size:0.875rem!important;
line-height:1.5rem!important;
background-color:rgba(0,0,0,0.02) !important;
border-bottom:1px solid rgba(0,0,0,0.1) !important;
word-wrap: break-word !important;
word-break: break-word !important;
overflow-wrap: break-word !important;
white-space: normal !important;
max-width:0!important;
}
/* table body */
.prosetabletbodytr,
articletabletbodytr,
tabletbodytr {
transition: background-color 0.15s ease !important;
border-bottom:1px solid rgba(0,0,0,0.06) !important;
}
.prosetabletbodytr:last-child,
articletabletbodytr:last-child,
tabletbodytr:last-child {
border-bottom: none !important;
}
.prosetabletbodytr:hover,
articletabletbodytr:hover,
tabletbodytr:hover {
background-color:rgba(0,0,0,0.02) !important;
}
.prosetabletbodytd,
articletabletbodytd,
tabletbodytd {
padding:10px16px!important;
font-size:0.875rem!important;
line-height:1.5rem!important;
word-wrap: break-word !important;
word-break: break-word !important;
overflow-wrap: break-word !important;
white-space: normal !important;
max-width:0!important;
min-width:130px!important;
}
/* code in tables */
.prosetablecode,
articletablecode,
tablecode {
font-size:0.8125rem!important;
padding:2px6px!important;
border-radius:0!important;
}
/* first column bold for reference tables */
.prosetabletbodytd:first-child,
articletabletbodytd:first-child,
tabletbodytd:first-child {
font-weight:500!important;
}
/* tinker box responsive layout */
.tinker-box {
display: flex;
flex-direction: column;
gap:32px;
padding:32px;
border:1px solid rgba(0,0,0,0.12);
margin-top:2rem;
margin-bottom:2rem;
}
.tinker-box-row {
display: flex;
align-items: center;
gap:32px;
}
.tinker-box-content {
display: flex;
flex-direction: column;
gap:32px;
flex:1;
min-width:0;
}
.tinker-box-contentbutton {
width:100%!important;
max-width:100%!important;
}
@media (max-width:640px) {
.tinker-box {
padding:24px;
gap:24px;
}
.tinker-box-row {
flex-direction: column;
align-items: stretch;
gap:24px;
width:100%;
}
.tinker-box-content {
width:100%;
}
}
/* dark mode overrides */
html.dark .prosetable,
html.darkarticletable,
html.darktable {
border-color:rgba(237,238,240,0.10) !important;
background-color:rgba(237,238,240,0.02) !important;
}
html.dark .prosetabletheadth,
html.darkarticletabletheadth,
html.darktabletheadth {
background-color:rgba(237,238,240,0.04) !important;
border-bottom-color:rgba(237,238,240,0.10) !important;
}
html.dark .prosetabletbodytr,
html.darkarticletabletbodytr,
html.darktabletbodytr {
border-bottom-color:rgba(237,238,240,0.08) !important;
}
html.dark .prosetabletbodytr:hover,
html.darkarticletabletbodytr:hover,
html.darktabletbodytr:hover {
background-color:rgba(237,238,240,0.04) !important;
}
/* tinker box border */
html.dark .tinker-box {
border-color:rgba(237,238,240,0.14);
}
/* pricing calculator button border */
html.dark {
--btn-border:#EDEEF0;
}
/* warning callout — selector depends on mintlify's yellow-* classes; renames silently break this */
html.dark .callout[class*="yellow"] {
background-color:rgba(237,238,240,0.03) !important;
border-color:rgba(237,238,240,0.10) !important;
}
html.dark .callout[class*="yellow"] svg {
color:#CAB168!important;
}
.dark .card:hover {
border-color:rgb(223223223) !important;
}
.dark .link {
border-bottom-color:#EDEEF0
}