-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
708 lines (598 loc) · 21.9 KB
/
style.css
File metadata and controls
708 lines (598 loc) · 21.9 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
/* Custom styles for Liquid AI Documentation */
/* Fix Tabs component layout - ensure tabpanel appears below tablist */
.tabs,
.tab-container {
flex-direction: column !important;
}
/* Global text color adjustments */
/* Mintlify uses a div.antialiased wrapper with text-gray-500/dark:text-gray-400 */
:root:not(.dark) body > div.antialiased {
color: #1f2937 !important;
}
.dark body > div.antialiased {
color: #e5e7eb !important;
}
/* Discord navbar link styling - make icon less bright to match GitHub */
.navbar-link a[href*="discord"] img,
a[href*="discord.gg"] img {
opacity: 0.6;
}
/* Hover state - turn purple accent color for both icon and text */
.navbar-link a[href*="discord"]:hover,
a[href*="discord.gg"]:hover {
color: #864bc4 !important;
}
.navbar-link a[href*="discord"]:hover img,
a[href*="discord.gg"]:hover img {
opacity: 1;
filter: brightness(0) saturate(100%) invert(32%) sepia(89%) saturate(1500%) hue-rotate(258deg) brightness(87%) contrast(95%);
}
/* Fix card border - consistent 2.5px border on all sides */
.card-group {
overflow: visible !important;
contain: none !important;
padding: 4px !important;
}
/* Card border styling */
[class*="block"][class*="rounded"][class*="border"]:not(.use-cases *) {
border-width: 2.5px !important;
border-style: solid !important;
}
/* Purple accent border and arrow on HOVER only in light mode */
/* Target both card-group cards AND standalone cards */
:root:not(.dark) .card-group a[class*="block"][class*="border"]:hover,
:root:not(.dark) a[class*="block"][class*="border"]:hover {
border-color: #864bc4 !important;
}
:root:not(.dark) .card-group a[class*="block"]:hover svg,
:root:not(.dark) a[class*="block"]:hover svg {
color: #864bc4 !important;
}
/* Card icons - purple accent color in light mode (default state) */
/* Only target the main icon, not the arrow icon (which contains "arrow" in class) */
:root:not(.dark) .card-group a[class*="block"] svg:not([class*="arrow"]) {
background-color: #864bc4 !important;
}
/* Fix GitHub icon visibility in light mode for standalone Cards (not in card-groups) */
/* Target all Card icons including github icons in example pages */
:root:not(.dark) [class*="card"] svg:not([class*="arrow"]),
:root:not(.dark) a[class*="block"][class*="border"] svg:not([class*="arrow"]) {
background-color: #864bc4 !important;
}
/* For mask-image based icons, also set the color property as fallback */
:root:not(.dark) [class*="card"] [style*="mask-image"],
:root:not(.dark) a[class*="block"][class*="border"] [style*="mask-image"] {
background-color: #864bc4 !important;
color: #864bc4 !important;
}
/* Hide external link arrow on Discord card */
a[href*="discord"] svg[class*="arrow"],
a[href*="discord.gg"] svg[class*="arrow"] {
display: none !important;
}
/* Light mode LEFT sidebar - selected item styling */
/* Target links with bg-primary-light class (Mintlify's active state) */
:root:not(.dark) a[class*="bg-primary-light"],
:root:not(.dark) a[class*="bg-background-light"] {
color: #864bc4 !important;
background-color: rgba(134, 75, 196, 0.1) !important;
}
/* Icon in selected sidebar item - use mask-image coloring */
:root:not(.dark) a[class*="bg-primary-light"] svg,
:root:not(.dark) a[class*="bg-background-light"] svg {
color: #864bc4 !important;
}
/* For mask-image based icons, set background color */
:root:not(.dark) a[class*="bg-primary-light"] [class*="mask-"],
:root:not(.dark) a[class*="bg-background-light"] [class*="mask-"],
:root:not(.dark) a[class*="bg-primary-light"] [style*="mask-image"],
:root:not(.dark) a[class*="bg-background-light"] [style*="mask-image"] {
background-color: #864bc4 !important;
}
/* Fix container clipping issues */
.mdx-content {
contain: none !important;
overflow: visible !important;
}
.lg\:overflow-x-clip {
overflow: visible !important;
}
/* Ensure the content container doesn't clip */
body > div.antialiased {
overflow: visible !important;
}
/* Panel styling - right-side custom TOC replacement (matches TOC width) */
/* Hide panel on mobile/tablet where the right sidebar isn't visible */
@media (max-width: 1279px) {
.panel {
display: none !important;
}
}
.panel {
width: 16.5rem !important;
}
/* Panel links - spacing and clickable styling */
.panel ul {
list-style: none !important;
padding-left: 0 !important;
margin: 0 !important;
}
.panel li {
margin-bottom: 0.75rem !important;
}
.panel li a {
text-decoration: none !important;
color: inherit !important;
font-weight: 600 !important;
background-image: linear-gradient(#864bc4, #864bc4) !important;
background-size: calc(100% - 1.1em) 1px !important;
background-position: left top 100% !important;
background-repeat: no-repeat !important;
padding-bottom: 3px !important;
transition: color 0.15s ease, background-size 0.15s ease !important;
}
/* Arrow icon - grey by default */
.panel li a::after {
content: "↗" !important;
font-size: 0.85em !important;
color: #9ca3af !important;
margin-left: 0.35em !important;
transition: transform 0.15s ease, color 0.15s ease !important;
display: inline-block !important;
}
/* Hover: text turns purple, underline thickens, arrow turns purple and jumps */
.panel li a:hover {
color: #864bc4 !important;
background-size: calc(100% - 1.1em) 1.5px !important;
}
.panel li a:hover::after {
color: #864bc4 !important;
transform: translate(2px, -2px) !important;
}
/* Section header (eyebrow) - purple accent in light mode to match dark mode */
:root:not(.dark) .eyebrow {
color: #864bc4 !important;
}
/* Use-case cards - compact 2x2 tiles with grey background, no border */
.use-cases .card-group {
padding: 0 !important;
row-gap: 0.5rem !important;
column-gap: 0.5rem !important;
}
/* Card: remove margins, border, overflow-hidden; add grey bg + less rounding */
.use-cases .card {
margin: 0 !important;
border: none !important;
border-color: transparent !important;
border-width: 0 !important;
border-radius: 6px !important;
background-color: #f3f4f6 !important;
overflow: visible !important;
--tw-ring-color: transparent !important;
--tw-ring-offset-color: transparent !important;
--tw-ring-shadow: none !important;
box-shadow: none !important;
outline: none !important;
}
/* Override internal card padding and layout - icon inline with title */
.use-cases [data-component-part="card-content-container"] {
padding: 0.7rem 0.9rem !important;
display: grid !important;
grid-template-columns: auto 1fr !important;
align-items: start !important;
column-gap: 0.45rem !important;
row-gap: 0 !important;
}
/* Icon sizing - scale down from native h-6 w-6 to prevent mask clipping */
.use-cases [data-component-part="card-icon"] {
transform: scale(0.7) !important;
transform-origin: left center !important;
margin-right: -0.35rem !important;
}
.use-cases [data-component-part="card-icon"] svg {
background-color: #4b5563 !important;
}
/* Title inline with icon */
.use-cases [data-component-part="card-title"] {
margin-top: 0 !important;
font-size: 0.9rem !important;
color: #374151 !important;
}
/* Description text */
.use-cases [data-component-part="card-content"] {
margin-top: 0.25rem !important;
font-size: 0.85rem !important;
color: #4b5563 !important;
line-height: 1.35 !important;
}
/* Dark mode use-case cards */
.dark .use-cases .card {
background-color: #2b2e35 !important;
}
.dark .use-cases [data-component-part="card-title"] {
color: #f3f4f6 !important;
}
.dark .use-cases [data-component-part="card-content"] {
color: #b8bfc8 !important;
}
.dark .use-cases [data-component-part="card-icon"] svg {
background-color: #c9cdd4 !important;
}
/* Capabilities section - tighter spacing, uniform text color */
.capabilities ul {
margin: 0.5rem 0 !important;
}
.capabilities li {
margin-bottom: 0.25rem !important;
}
.capabilities p,
.capabilities li {
color: inherit !important;
}
.capabilities strong {
font-weight: 600 !important;
color: inherit !important;
}
/* Global content links - purple underline with hover effect */
/* Scope to main content area only, exclude navigation/sidebar/tables */
article a:not([class*="block"]):not(table a),
[role="main"] a:not([class*="block"]):not(table a),
.prose a:not([class*="block"]):not(table a) {
text-decoration: none !important;
color: inherit !important;
font-weight: 600 !important;
background-image: linear-gradient(#864bc4, #864bc4) !important;
background-size: 100% 1px !important;
background-position: left top 100% !important;
background-repeat: no-repeat !important;
padding-bottom: 3px !important;
transition: color 0.15s ease, background-size 0.15s ease !important;
}
article a:not([class*="block"]):not(table a):hover,
[role="main"] a:not([class*="block"]):not(table a):hover,
.prose a:not([class*="block"]):not(table a):hover {
color: #864bc4 !important;
background-size: 100% 1.5px !important;
}
/* Default table styling - applies to all tables */
table {
border-collapse: collapse !important;
border-spacing: 0 !important;
width: 100% !important;
max-width: 100% !important;
margin: 1em 0 !important;
table-layout: auto !important;
}
table thead th {
padding: 0.75rem 1rem !important;
font-weight: 600 !important;
text-align: left !important;
}
table tbody td {
padding: 0.75rem 1rem !important;
vertical-align: middle !important;
}
table tbody tr {
border-bottom: 1px solid #e5e7eb !important;
}
/* API Spec tables (5 columns: Name, Type, Required, Default, Description) - ensure auto layout and proper spacing */
/* Reset model table styles for tables that don't have 6 columns */
table:not(:has(thead th:nth-child(6))) td,
table:not(:has(thead th:nth-child(6))) th {
width: auto !important;
overflow: visible !important;
text-overflow: clip !important;
white-space: normal !important;
text-align: left !important;
padding: 0.75rem 1rem !important;
}
table:not(:has(thead th:nth-child(6))) {
table-layout: auto !important;
font-size: inherit !important;
}
/* Model table styling - only for tables with 6 columns (Model, HF, GGUF, MLX, ONNX, Trainable?) */
table:has(thead th:nth-child(6):not(:nth-child(7))) {
table-layout: fixed !important;
font-size: 0.8rem !important;
margin: 0 !important;
}
/* First column - model names (only for 6-column tables) */
table:has(thead th:nth-child(6):not(:nth-child(7))) td:first-child,
table:has(thead th:nth-child(6):not(:nth-child(7))) th:first-child {
width: 45% !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;
}
/* Checkmark columns - equal width (only for 6-column tables) */
table:has(thead th:nth-child(6):not(:nth-child(7))) td:nth-child(2),
table:has(thead th:nth-child(6):not(:nth-child(7))) th:nth-child(2),
table:has(thead th:nth-child(6):not(:nth-child(7))) td:nth-child(3),
table:has(thead th:nth-child(6):not(:nth-child(7))) th:nth-child(3),
table:has(thead th:nth-child(6):not(:nth-child(7))) td:nth-child(4),
table:has(thead th:nth-child(6):not(:nth-child(7))) th:nth-child(4),
table:has(thead th:nth-child(6):not(:nth-child(7))) td:nth-child(5),
table:has(thead th:nth-child(6):not(:nth-child(7))) th:nth-child(5) {
width: 8% !important;
text-align: center !important;
padding: 0.5rem 0 !important;
}
/* Last column - Trainable (only for 6-column tables) */
table:has(thead th:nth-child(6):not(:nth-child(7))) td:nth-child(6),
table:has(thead th:nth-child(6):not(:nth-child(7))) th:nth-child(6) {
width: 15% !important;
text-align: center !important;
padding: 0.5rem 0 !important;
white-space: nowrap !important;
}
/* Table header - purple gradient with top border (only for 6-column tables) */
table:has(thead th:nth-child(6):not(:nth-child(7))) thead tr {
background: linear-gradient(135deg, #e9d5f5 0%, #d4c4e3 100%) !important;
border-top: 3px solid #864bc4 !important;
}
table:has(thead th:nth-child(6):not(:nth-child(7))) thead th {
color: #1f2937 !important;
}
/* Section header rows with bold text - purple gradient like header (only for 6-column tables) */
table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:first-child strong) {
background: linear-gradient(135deg, #e9d5f5 0%, #d4c4e3 100%) !important;
}
/* Sub-section rows (LFM2.5 Models, LFM2 Models labels) - light green background (only for 6-column tables) */
table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:nth-child(2):empty):not(:has(strong)) {
background-color: #dcfce7 !important;
}
table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:nth-child(2):empty):not(:has(strong)) td {
background-color: #dcfce7 !important;
padding: 0.35rem 0.5rem !important;
}
table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:nth-child(2):empty):not(:has(strong)) td:first-child {
text-align: left !important;
font-size: 0.75rem !important;
color: #166534 !important;
padding-left: 1rem !important;
}
/* Table links (checkmarks) - green, no underline */
table a {
text-decoration: none !important;
background-image: none !important;
font-weight: normal !important;
padding-bottom: 0 !important;
color: #22c55e !important;
padding: 0.35rem 0.5rem !important;
border-radius: 6px !important;
transition: background-color 0.15s ease !important;
}
table a:hover {
color: #16a34a !important;
background-image: none !important;
background-color: rgba(134, 75, 196, 0.15) !important;
}
/* Model name links (first column) - subtle text, no underline, just hover effect */
table:has(thead th:nth-child(6):not(:nth-child(7))) td:first-child a {
color: inherit !important;
font-weight: 500 !important;
padding: 0.25rem 0.4rem !important;
margin: -0.25rem -0.4rem !important;
border-radius: 4px !important;
background-image: none !important;
text-decoration: none !important;
transition: background-color 0.15s ease, color 0.15s ease !important;
}
table:has(thead th:nth-child(6):not(:nth-child(7))) td:first-child a:hover {
color: #864bc4 !important;
background-color: rgba(134, 75, 196, 0.1) !important;
background-image: none !important;
}
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) td:first-child a {
color: inherit !important;
}
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) td:first-child a:hover {
color: #a78bfa !important;
background-color: rgba(167, 139, 250, 0.15) !important;
}
/* Dark mode table styling */
.dark table thead tr {
background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%) !important;
}
/* Dark mode - 6-column table header (override light mode :has() rule) */
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) thead tr {
background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%) !important;
}
.dark table thead th {
color: #f3f4f6 !important;
}
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) thead th {
color: #f3f4f6 !important;
}
.dark table tbody tr {
border-bottom: 1px solid #374151 !important;
}
/* Dark mode section header rows with bold text */
.dark table tbody tr:has(td:first-child strong) {
background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%) !important;
}
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:first-child strong) {
background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%) !important;
}
/* Dark mode sub-section rows (LFM2.5 Models, LFM2 Models labels) */
.dark table tbody tr:has(td:nth-child(2):empty):not(:has(strong)) {
background-color: #14532d !important;
}
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:nth-child(2):empty):not(:has(strong)) {
background-color: #14532d !important;
}
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:nth-child(2):empty):not(:has(strong)) td {
background-color: #14532d !important;
}
.dark table tbody tr:has(td:nth-child(2):empty):not(:has(strong)) td:first-child {
color: #86efac !important;
}
.dark table:has(thead th:nth-child(6):not(:nth-child(7))) tbody tr:has(td:nth-child(2):empty):not(:has(strong)) td:first-child {
color: #86efac !important;
}
.dark table a {
color: #4ade80 !important;
}
.dark table a:hover {
color: #86efac !important;
}
/* Code block styling - ensure visible background contrast */
/* Inline code */
:root:not(.dark) code:not(pre code) {
background-color: #f9fafb !important;
border: 1px solid #e5e7eb !important;
border-radius: 4px !important;
padding: 0.15em 0.4em !important;
}
.dark code:not(pre code) {
background-color: #374151 !important;
border: 1px solid #4b5563 !important;
border-radius: 4px !important;
padding: 0.15em 0.4em !important;
}
/* Fenced code blocks */
/* Target the code block wrapper container */
:root:not(.dark) .code-block-background,
:root:not(.dark) [class*="code-block"] > div {
background-color: #f9fafb !important;
}
/* Hide the right-side fade gradient overlay in code blocks */
/* The gradient overlay is a direct child div with no class attribute */
[class*="code-block"].group > div:not([class]):last-child {
display: none !important;
}
:root:not(.dark) pre,
:root:not(.dark) pre.shiki,
:root:not(.dark) .shiki {
background-color: #f9fafb !important;
border-radius: 8px !important;
}
:root:not(.dark) pre code,
:root:not(.dark) .shiki code {
background-color: transparent !important;
border: none !important;
color: #1f2937 !important;
}
.dark pre {
background-color: #374151 !important;
border-radius: 8px !important;
}
.dark pre code {
background-color: transparent !important;
border: none !important;
color: #e5e7eb !important;
}
/* Colab badge styling */
.colab-link a {
background-image: none !important;
padding-bottom: 0 !important;
}
.colab-link img {
height: 28px !important;
width: auto !important;
}
/* Tab styling - purple accent underline for selected tabs in light mode */
/* The inner div uses text-primary with border-current, so we override the color */
:root:not(.dark) [role="tab"][aria-selected="true"] > div {
color: #864bc4 !important;
}
/* Main nav tabs - purple underline for active tab in light mode */
/* The underline is an inner div with bg-primary (black) vs bg-primary-light (purple in dark mode) */
:root:not(.dark) .nav-tabs-item > div[class*="bg-primary"] {
background-color: #864bc4 !important;
}
/* TOC (Table of Contents) - purple accent for active section in light mode */
/* Active TOC links have text-primary class which is dark in light mode, purple in dark mode */
:root:not(.dark) .toc-item a[class*="text-primary"] {
color: #864bc4 !important;
}
/* Format buttons for model pages */
.format-buttons {
display: flex !important;
gap: 0.5rem !important;
flex-wrap: wrap !important;
margin: 0.5rem 0 1.5rem 0 !important;
}
.format-buttons a {
display: inline-block !important;
padding: 0.35rem 0.7rem !important;
border-radius: 4px !important;
font-size: 0.85rem !important;
font-weight: 600 !important;
text-decoration: none !important;
background-image: none !important;
}
.format-buttons a:hover {
background-image: none !important;
filter: brightness(0.95) !important;
}
/* HF button - orange */
.format-buttons a.btn-hf,
.format-buttons a.btn-hf:hover,
.format-buttons a.btn-hf:visited {
background-color: #fbbf24 !important;
color: #000000 !important;
}
/* GGUF button - blue */
.format-buttons a.btn-gguf,
.format-buttons a.btn-gguf:hover,
.format-buttons a.btn-gguf:visited {
background-color: #60a5fa !important;
color: #000000 !important;
}
/* MLX button - purple */
.format-buttons a.btn-mlx,
.format-buttons a.btn-mlx:hover,
.format-buttons a.btn-mlx:visited {
background-color: #c4b5fd !important;
color: #000000 !important;
}
/* ONNX button - green */
.format-buttons a.btn-onnx,
.format-buttons a.btn-onnx:hover,
.format-buttons a.btn-onnx:visited {
background-color: #86efac !important;
color: #000000 !important;
}
/* Back button for model pages */
.back-button {
display: inline-flex !important;
align-items: center !important;
gap: 0.25rem !important;
margin-bottom: 0.75rem !important;
font-size: 0.85rem !important;
font-weight: 500 !important;
color: #6b7280 !important;
text-decoration: none !important;
background-image: none !important;
}
.back-button:hover {
color: #864bc4 !important;
background-image: none !important;
}
/* Arrow icon for internal model card links - matches Mintlify's external link arrow */
.card-group a[href^="/docs/models/"]:not([href*="text-models"]):not([href*="vision-models"]):not([href*="audio-models"]):not([href*="liquid-nanos"]):not([href*="complete-library"]) {
position: relative !important;
}
.card-group a[href^="/docs/models/"]:not([href*="text-models"]):not([href*="vision-models"]):not([href*="audio-models"]):not([href*="liquid-nanos"]):not([href*="complete-library"])::before {
content: "" !important;
position: absolute !important;
top: 0.875rem !important;
right: 0.875rem !important;
width: 0.875rem !important;
height: 0.875rem !important;
background-color: #9ca3af !important;
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 19.5l15-15m0 0H8.25m11.25 0v11.25'/%3E%3C/svg%3E") !important;
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 19.5l15-15m0 0H8.25m11.25 0v11.25'/%3E%3C/svg%3E") !important;
-webkit-mask-size: contain !important;
mask-size: contain !important;
-webkit-mask-repeat: no-repeat !important;
mask-repeat: no-repeat !important;
transition: background-color 0.15s ease !important;
}
:root:not(.dark) .card-group a[href^="/docs/models/"]:not([href*="text-models"]):not([href*="vision-models"]):not([href*="audio-models"]):not([href*="liquid-nanos"]):not([href*="complete-library"]):hover::before {
background-color: #864bc4 !important;
}
.dark .card-group a[href^="/docs/models/"]:not([href*="text-models"]):not([href*="vision-models"]):not([href*="audio-models"]):not([href*="liquid-nanos"]):not([href*="complete-library"])::before {
background-color: #9ca3af !important;
}