-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1242 lines (1204 loc) · 80.5 KB
/
Copy pathindex.html
File metadata and controls
1242 lines (1204 loc) · 80.5 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
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="CSS Ref - A comprehensive reference for CSS properties, selectors, and values with browser support information." />
<meta name="keywords" content="CSS, CSS3, CSS reference, CSS properties, CSS selectors, web development, frontend" />
<meta name="author" content="CSS Ref" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://tantalumv.github.io/css-ref/" />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://tantalumv.github.io/css-ref/" />
<meta property="og:title" content="CSS Ref - CSS Properties Reference" />
<meta property="og:description" content="A comprehensive reference for CSS properties, selectors, and values with browser support information." />
<meta property="og:site_name" content="CSS Ref" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CSS Ref - CSS Properties Reference" />
<meta name="twitter:description" content="A comprehensive reference for CSS properties, selectors, and values with browser support information." />
<!-- JSON-LD Schema for rich search results -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "CSS Ref",
"description": "Interactive CSS property explorer with live demos, MDN links, and practical examples for web developers",
"url": "https://tantalumv.github.io/css-ref/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"browserRequirements": "Requires JavaScript. Works in all modern browsers.",
"author": {
"@type": "Person",
"name": "CSS Ref"
}
}
</script>
<!-- Security & Resources -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://cdnjs.cloudflare.com https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data:; connect-src 'self' https://cdnjs.cloudflare.com https://cdn.jsdelivr.net;" />
<link rel="icon" type="image/svg+xml" href="/cssref-favicon.svg?v=2" />
<title>CSS Ref</title>
<!-- Preload Critical Assets -->
<link rel="preload" id="preload-css" href="dist/bundle.1f015d7b.css" as="style" crossorigin />
<link rel="preload" id="preload-js" href="dist/bundle.3ab0bbc1.js" as="script" crossorigin />
<!-- Critical CSS (inlined for faster FCP/LCP) -->
<style>:root{--background:#0f172a;--foreground:#f8fafc;--border:#1e293b;--card:#1e293b;--card-foreground:#f8fafc;--primary:#e78a53;--primary-foreground:#0f172a;--secondary:#5f8787;--secondary-foreground:#0f172a;--muted:#1e293b;--muted-foreground:#94a3b8;--radius:.2rem;--radius-sm:.15rem;--radius-md:.2rem;--radius-lg:.28rem;--radius-xl:.36rem;--radius-round:9999px;--shadow-xs:0 1px 4px rgba(0,0,0,.03);--shadow-sm:0 1px 4px rgba(0,0,0,.05),0 1px 2px -1px rgba(0,0,0,.05);--shadow:0 1px 4px rgba(0,0,0,.05),0 1px 2px -1px rgba(0,0,0,.05);--shadow-md:0 1px 4px rgba(0,0,0,.05),0 2px 4px -1px rgba(0,0,0,.05);--shadow-lg:0 1px 4px rgba(0,0,0,.05),0 4px 6px -1px rgba(0,0,0,.05);--shadow-xl:0 1px 4px rgba(0,0,0,.05),0 8px 10px -1px rgba(0,0,0,.05);--space-3xs:.3125rem;--space-2xs:.5625rem;--space-xs:.875rem;--space-s:1.125rem;--space-m:1.6875rem;--space-l:2.25rem;--space-xl:3.375rem;--space-2xl:4.5rem;--space-3xl:6.75rem;--font-sans:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;--grid-max-width:77.5rem}@keyframes spin{to{transform:rotate(360deg)}}*{box-sizing:border-box;margin:0;padding:0}html{font-family:var(--font-sans);line-height:1.5;-webkit-font-smoothing:antialiased}body{background:var(--background);color:var(--foreground);min-height:100vh;overflow-x:hidden}header{position:sticky;top:0;z-index:100;background:rgba(15,23,42,.9);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);padding:4px 8px;display:flex;align-items:center;gap:8px}.brand{display:flex;align-items:center;flex-shrink:0;cursor:pointer}.brand-logo{height:2rem;width:auto}.search-shell{flex:1;min-width:200px;position:relative}.view-mode-toggles{display:flex;gap:4px}#grid-view{width:100%;padding:var(--space-l);max-width:var(--grid-max-width);margin-inline:auto;min-height:400px}#grid.is-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--space-2xs)}@media(max-width:900px){#grid.is-grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:640px)#grid.is-grid{grid-template-columns:repeat(2,1fr)}#grid.is-list{display:flex;flex-direction:column;gap:var(--space-2xs)}.card{background:var(--card);border-radius:var(--radius-lg);border:1px solid var(--border);cursor:pointer;transition:transform .2s,box-shadow .2s;position:relative;overflow:hidden;display:flex;flex-direction:column}.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);background:var(--card)}.demo-stage{height:155px;overflow:visible;position:relative;background:var(--muted);display:flex;align-items:center;justify-content:center;font-family:var(--font-sans);font-size:.7rem;user-select:none}.demo-stage>div:first-child{width:100%;height:100%;overflow:hidden;display:flex;align-items:center;justify-content:center}.demo-stage *{box-sizing:border-box}.card-meta{display:flex;align-items:center;padding:var(--space-xs) var(--space-xs) var(--space-2xs);background:var(--card);border-top:1px solid var(--border);min-height:2.2rem}.demo-stage .cat-badge{position:absolute;bottom:0;left:var(--space-xs);z-index:10;transform:translateY(48%);font-size:.63rem;font-weight:700;padding:.15rem .35rem;border-radius:var(--radius-lg);white-space:nowrap;color:var(--primary-foreground);background:var(--primary);box-shadow:0 2px 8px rgba(0,0,0,.15)}.card-name-wrap{flex:1;min-width:0;overflow:hidden;mask-image:linear-gradient(to right,black 85%,transparent 100%);-webkit-mask-image:linear-gradient(to right,black 85%,transparent 100%)}.card-name{font-family:var(--font-sans);font-size:1rem;font-weight:800;color:var(--card-foreground);line-height:1.2;margin:0;white-space:nowrap}.property-card{background:var(--border);border-radius:var(--radius-lg);padding:1rem;min-height:200px}.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}</style>
<!-- Stylesheets -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com" />
<!-- Load Google Fonts asynchronously -->
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789%20.,!?;:'"()-_@#$%&*+=<>[]{}|\/^~`" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789%20.,!?;:'"()-_@#$%&*+=<>[]{}|\/^~`" media="print" onload="this.media='all'" />
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789%20.,!?;:'"()-_@#$%&*+=<>[]{}|\/^~`" />
</noscript>
<!-- Open Props is bundled in dist/bundle.1f015d7b.css -->
<link rel="stylesheet" id="bundle-css" href="dist/bundle.1f015d7b.css" media="print" onload="this.media='all'" />
<noscript><link rel="stylesheet" href="dist/bundle.1f015d7b.css" /></noscript>
</head>
<body
data-signals="{
query: '',
activeCollection: '',
collectionNavOpen: false,
activeCats: [],
activeInterops: [],
activeBrowsers: [],
catOpen: false,
interopOpen: false,
browserOpen: false,
searchOpen: false,
sidebarOpen: false,
searchCatOpen: false,
searchInteropOpen: false,
searchBrowserOpen: false,
viewMode: 'grid',
theme: 'dark',
selectedProp: '',
tableDisplayedCount: 0,
tableTotalCount: 0,
tableLoading: false,
filteredCount: 0,
totalCount: 0,
showGridOverlay: false,
isPaused: false
}"
data-on:keydown__window="evt.key === 'Escape' && (($catOpen = false), ($interopOpen = false), ($browserOpen = false), ($collectionNavOpen = false), ($searchOpen = false))"
data-on:close-all-popovers__window="$catOpen = false; $interopOpen = false; $browserOpen = false; $collectionNavOpen = false; $searchOpen = false"
data-on:app:hashchange__window="const h = evt.detail.hash; if (h.startsWith('!')) { $activeCollection = h.slice(1); $selectedProp = ''; } else if (h === '') { $activeCollection = ''; $selectedProp = ''; } else { $selectedProp = decodeURIComponent(h); $activeCollection = ''; }"
>
<!-- ==============================
ANIMATED BACKGROUND
============================== -->
<div id="animated-bg">
<div class="circle" id="circle-small"></div>
<div class="circle" id="circle-medium"></div>
<div class="circle" id="circle-large"></div>
<div class="circle" id="circle-xlarge"></div>
<div class="circle" id="circle-xxlarge"></div>
</div>
<!-- ==============================
INLINE SVG ICONS
============================== -->
<svg xmlns="http://www.w3.org/2000/svg" style="display: none">
<defs>
<symbol id="ri-filter-line" viewBox="0 0 24 24">
<path fill="currentColor" d="M21 4V6H20L15 13.5V22H9V13.5L4 6H3V4H21ZM6.4037 6L11 12.8944V20H13V12.8944L17.5963 6H6.4037Z"/>
</symbol>
<symbol id="ri-layout-grid-line" viewBox="0 0 24 24">
<path fill="currentColor" d="M21 3C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H21ZM11 13H4V19H11V13ZM20 13H13V19H20V13ZM11 5H4V11H11V5ZM20 5H13V11H20V5Z"/>
</symbol>
<symbol id="ri-table-line" viewBox="0 0 24 24">
<path fill="currentColor" d="M21 3V21H3V3H21ZM11 5H5V11H11V5ZM11 13H5V19H11V13ZM19 13H13V19H19V13ZM19 5H13V11H19V5Z"/>
</symbol>
<symbol id="ri-sun-line" viewBox="0 0 24 24">
<path fill="currentColor" d="M12 18C8.68629 18 6 15.3137 6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12C18 15.3137 15.3137 18 12 18ZM12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16ZM11 1H13V4H11V1ZM11 20H13V23H11V20ZM3.51472 4.92893L4.92893 3.51472L7.05025 5.63604L5.63604 7.05025L3.51472 4.92893ZM16.9497 18.364L18.364 16.9497L20.4853 19.0711L19.0711 20.4853L16.9497 18.364ZM19.0711 3.51472L20.4853 4.92893L18.364 7.05025L16.9497 5.63604L19.0711 3.51472ZM5.63604 16.9497L7.05025 18.364L4.92893 20.4853L3.51472 19.0711L5.63604 16.9497ZM23 11V13H20V11H23ZM4 11V13H1V11H4Z"/>
</symbol>
<symbol id="ri-moon-line" viewBox="0 0 24 24">
<path fill="currentColor" d="M10 7C10 10.866 13.134 14 17 14C18.9584 14 20.729 13.1957 21.9995 11.8995C22 11.933 22 11.9665 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C12.0335 2 12.067 2 12.1005 2.00049C10.8043 3.27098 10 5.04157 10 7ZM4 12C4 16.4183 7.58172 20 12 20C15.0583 20 17.7158 18.2839 19.062 15.7621C18.3945 15.9187 17.7035 16 17 16C12.0294 16 8 11.9706 8 7C8 6.29648 8.08133 5.60547 8.2379 4.938C5.71611 6.28423 4 8.9417 4 12Z"/>
</symbol>
<symbol id="ri-time-line" viewBox="0 0 24 24">
<path fill="currentColor" d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM13 12H17V14H11V7H13V12Z"/>
</symbol>
<symbol id="ri-arrow-left-line" viewBox="0 0 24 24">
<path fill="currentColor" d="M7.82843 10.9999H20V12.9999H7.82843L13.1924 18.3638L11.7782 19.778L4 11.9999L11.7782 4.22168L13.1924 5.63589L7.82843 10.9999Z"/>
</symbol>
<!-- Remix Icons (23 icons for categories and collections) -->
<!-- Remix Icons (23 icons for categories and collections) -->
<symbol id="ri-layout-row-line" viewBox="0 0 24 24"><path fill="currentColor" d="M19 11V5H5V11H19ZM19 13H5V19H19V13ZM4 3H20C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3Z"/></symbol>
<symbol id="ri-layout-column-line" viewBox="0 0 24 24"><path fill="currentColor" d="M11 5H5V19H11V5ZM13 5V19H19V5H13ZM4 3H20C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3Z"/></symbol>
<symbol id="ri-font-size" viewBox="0 0 24 24"><path fill="currentColor" d="M11.246 15H4.75416L2.75416 20H0.600098L7.0001 4H9.0001L15.4001 20H13.246L11.246 15ZM10.446 13L8.0001 6.88516L5.55416 13H10.446ZM21.0001 12.5351V12H23.0001V20H21.0001V19.4649C20.4118 19.8052 19.7287 20 19.0001 20C16.791 20 15.0001 18.2091 15.0001 16C15.0001 13.7909 16.791 12 19.0001 12C19.7287 12 20.4118 12.1948 21.0001 12.5351ZM19.0001 18C20.1047 18 21.0001 17.1046 21.0001 16C21.0001 14.8954 20.1047 14 19.0001 14C17.8955 14 17.0001 14.8954 17.0001 16C17.0001 17.1046 17.8955 18 19.0001 18Z"/></symbol>
<symbol id="ri-palette-line" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C17.5222 2 22 5.97778 22 10.8889C22 13.9556 19.5111 16.4444 16.4444 16.4444H14.4778C13.5556 16.4444 12.8111 17.1889 12.8111 18.1111C12.8111 18.5333 12.9778 18.9222 13.2333 19.2111C13.5 19.5111 13.6667 19.9 13.6667 20.3333C13.6667 21.2556 12.9 22 12 22C6.47778 22 2 17.5222 2 12C2 6.47778 6.47778 2 12 2ZM10.8111 18.1111C10.8111 16.0843 12.451 14.4444 14.4778 14.4444H16.4444C18.4065 14.4444 20 12.851 20 10.8889C20 7.1392 16.4677 4 12 4C7.58235 4 4 7.58235 4 12C4 16.19 7.2226 19.6285 11.324 19.9718C10.9948 19.4168 10.8111 18.7761 10.8111 18.1111ZM7.5 12C6.67157 12 6 11.3284 6 10.5C6 9.67157 6.67157 9 7.5 9C8.32843 9 9 9.67157 9 10.5C9 11.3284 8.32843 12 7.5 12ZM16.5 12C15.6716 12 15 11.3284 15 10.5C15 9.67157 15.6716 9 16.5 9C17.3284 9 18 9.67157 18 10.5C18 11.3284 17.3284 12 16.5 12ZM12 9C11.1716 9 10.5 8.32843 10.5 7.5C10.5 6.67157 11.1716 6 12 6C12.8284 6 13.5 6.67157 13.5 7.5C13.5 8.32843 12.8284 9 12 9Z"/></symbol>
<symbol id="ri-expand-width-horizontal-line" viewBox="0 0 24 24"><path fill="currentColor" d="M9.04304 5.79285 2.83594 12 9.04304 18.2071 10.4573 16.7928 5.66436 12 10.4573 7.20706 9.04304 5.79285ZM14.957 18.2072 21.1641 12.0001 14.957 5.793 13.5427 7.20721 18.3356 12.0001 13.5427 16.793 14.957 18.2072Z"/></symbol>
<symbol id="ri-eye-line" viewBox="0 0 24 24"><path fill="currentColor" d="M12.0003 3C17.3924 3 21.8784 6.87976 22.8189 12C21.8784 17.1202 17.3924 21 12.0003 21C6.60812 21 2.12215 17.1202 1.18164 12C2.12215 6.87976 6.60812 3 12.0003 3ZM12.0003 19C16.2359 19 19.8603 16.052 20.7777 12C19.8603 7.94803 16.2359 5 12.0003 5C7.7646 5 4.14022 7.94803 3.22278 12C4.14022 16.052 7.7646 19 12.0003 19ZM12.0003 16.5C9.51498 16.5 7.50026 14.4853 7.50026 12C7.50026 9.51472 9.51498 7.5 12.0003 7.5C14.4855 7.5 16.5003 9.51472 16.5003 12C16.5003 14.4853 14.4855 16.5 12.0003 16.5ZM12.0003 14.5C13.381 14.5 14.5003 13.3807 14.5003 12C14.5003 10.6193 13.381 9.5 12.0003 9.5C10.6196 9.5 9.50026 10.6193 9.50026 12C9.50026 13.3807 10.6196 14.5 12.0003 14.5Z"/></symbol>
<symbol id="ri-movie-line" viewBox="0 0 24 24"><path fill="currentColor" d="M2 3.9934C2 3.44476 2.45531 3 2.9918 3H21.0082C21.556 3 22 3.44495 22 3.9934V20.0066C22 20.5552 21.5447 21 21.0082 21H2.9918C2.44405 21 2 20.5551 2 20.0066V3.9934ZM4 5V19H20V5H4ZM10.6219 8.41459L15.5008 11.6672C15.6846 11.7897 15.7343 12.0381 15.6117 12.2219C15.5824 12.2658 15.5447 12.3035 15.5008 12.3328L10.6219 15.5854C10.4381 15.708 10.1897 15.6583 10.0672 15.4745C10.0234 15.4088 10 15.3316 10 15.2526V8.74741C10 8.52649 10.1791 8.34741 10.4 8.34741C10.479 8.34741 10.5562 8.37078 10.6219 8.41459Z"/></symbol>
<symbol id="ri-drag-move-line" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2L16.2426 6.24264L14.8284 7.65685L12 4.82843L9.17157 7.65685L7.75736 6.24264L12 2ZM2 12L6.24264 7.75736L7.65685 9.17157L4.82843 12L7.65685 14.8284L6.24264 16.2426L2 12ZM22 12L17.7574 16.2426L16.3431 14.8284L19.1716 12L16.3431 9.17157L17.7574 7.75736L22 12ZM12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14ZM12 22L7.75736 17.7574L9.17157 16.3431L12 19.1716L14.8284 16.3431L16.2426 17.7574L12 22Z"/></symbol>
<symbol id="ri-arrow-up-down-line" viewBox="0 0 24 24"><path fill="currentColor" d="M11.9498 7.94975L10.5356 9.36396L8.00079 6.828L8.00004 20H6.00004L6.00079 6.828L3.46451 9.36396L2.05029 7.94975L7.00004 3L11.9498 7.94975ZM21.9498 16.0503L17 21L12.0503 16.0503L13.4645 14.636L16.0008 17.172L16 4H18L18.0008 17.172L20.5356 14.636L21.9498 16.0503Z"/></symbol>
<symbol id="ri-mouse-line" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C14.7614 2 17 4.23858 17 7V13H19C19.5523 13 20 13.4477 20 14V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V14C4 13.4477 4.44772 13 5 13H7V7C7 4.23858 9.23858 2 12 2ZM12 4C10.3431 4 9 5.34315 9 7V9H6V19H18V9H15V7C15 5.34315 13.6569 4 12 4Z"/></symbol>
<symbol id="ri-code-box-line" viewBox="0 0 24 24"><path fill="currentColor" d="M3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3ZM4 5V19H20V5H4ZM20 12L16.4645 15.5355L15.0503 14.1213L17.1716 12L15.0503 9.87868L16.4645 8.46447L20 12ZM6.82843 12L8.94975 14.1213L7.53553 15.5355L4 12L7.53553 8.46447L8.94975 9.87868L6.82843 12ZM11.2443 17H9.11597L12.7557 7H14.884L11.2443 17Z"/></symbol>
<symbol id="ri-aspect-ratio-line" viewBox="0 0 24 24"><path fill="currentColor" d="M21 3C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H21ZM20 5H4V19H20V5ZM13 17V15H16V12H18V17H13ZM11 7V9H8V12H6V7H11Z"/></symbol>
<symbol id="ri-checkbox-multiple-blank-line" viewBox="0 0 24 24"><path fill="currentColor" d="M6.99979 7V3C6.99979 2.44772 7.4475 2 7.99979 2H20.9998C21.5521 2 21.9998 2.44772 21.9998 3V16C21.9998 16.5523 21.5521 17 20.9998 17H17V20.9925C17 21.5489 16.551 22 15.9925 22H3.00728C2.45086 22 2 21.5511 2 20.9925L2.00276 8.00748C2.00288 7.45107 2.4518 7 3.01025 7H6.99979ZM8.99979 7H15.9927C16.549 7 17 7.44892 17 8.00748V15H19.9998V4H8.99979V7ZM4.00255 9L4.00021 20H15V9H4.00255Z"/></symbol>
<symbol id="ri-apps-line" viewBox="0 0 24 24"><path fill="currentColor" d="M6.75 2.5C9.09721 2.5 11 4.40279 11 6.75V11H6.75C4.40279 11 2.5 9.09721 2.5 6.75C2.5 4.40279 4.40279 2.5 6.75 2.5ZM9 9V6.75C9 5.50736 7.99264 4.5 6.75 4.5C5.50736 4.5 4.5 5.50736 4.5 6.75C4.5 7.99264 5.50736 9 6.75 9H9ZM6.75 13H11V17.25C11 19.5972 9.09721 21.5 6.75 21.5C4.40279 21.5 2.5 19.5972 2.5 17.25C2.5 14.9028 4.40279 13 6.75 13ZM6.75 15C5.50736 15 4.5 16.0074 4.5 17.25C4.5 18.4926 5.50736 19.5 6.75 19.5C7.99264 19.5 9 18.4926 9 17.25V15H6.75ZM17.25 2.5C19.5972 2.5 21.5 4.40279 21.5 6.75C21.5 9.09721 19.5972 11 17.25 11H13V6.75C13 4.40279 14.9028 2.5 17.25 2.5ZM17.25 9C18.4926 9 19.5 7.99264 19.5 6.75C19.5 5.50736 18.4926 4.5 17.25 4.5C16.0074 4.5 15 5.50736 15 6.75V9H17.25ZM13 13H17.25C19.5972 13 21.5 14.9028 21.5 17.25C21.5 19.5972 19.5972 21.5 17.25 21.5C14.9028 21.5 13 19.5972 13 17.25V13ZM15 15V17.25C15 18.4926 16.0074 19.5 17.25 19.5C18.4926 19.5 19.5 18.4926 19.5 17.25C19.5 16.0074 18.4926 15 17.25 15H15Z"/></symbol>
<symbol id="ri-list-unordered" viewBox="0 0 24 24"><path fill="currentColor" d="M8 4H21V6H8V4ZM4.5 6.5C3.67157 6.5 3 5.82843 3 5C3 4.17157 3.67157 3.5 4.5 3.5C5.32843 3.5 6 4.17157 6 5C6 5.82843 5.32843 6.5 4.5 6.5ZM4.5 13.5C3.67157 13.5 3 12.8284 3 12C3 11.1716 3.67157 10.5 4.5 10.5C5.32843 10.5 6 11.1716 6 12C6 12.8284 5.32843 13.5 4.5 13.5ZM4.5 20.4C3.67157 20.4 3 19.7284 3 18.9C3 18.0716 3.67157 17.4 4.5 17.4C5.32843 17.4 6 18.0716 6 18.9C6 19.7284 5.32843 20.4 4.5 20.4ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z"/></symbol>
<symbol id="ri-more-fill" viewBox="0 0 24 24"><path fill="currentColor" d="M5 10C3.9 10 3 10.9 3 12C3 13.1 3.9 14 5 14C6.1 14 7 13.1 7 12C7 10.9 6.1 10 5 10ZM19 10C17.9 10 17 10.9 17 12C17 13.1 17.9 14 19 14C20.1 14 21 13.1 21 12C21 10.9 20.1 10 19 10ZM12 10C10.9 10 10 10.9 10 12C10 13.1 10.9 14 12 14C13.1 14 14 13.1 14 12C14 10.9 13.1 10 12 10Z"/></symbol>
<symbol id="ri-separator" viewBox="0 0 24 24"><path fill="currentColor" d="M2 11H4V13H2V11ZM6 11H18V13H6V11ZM20 11H22V13H20V11Z"/></symbol>
<symbol id="ri-paint-brush-line" viewBox="0 0 24 24"><path fill="currentColor" d="M5 4.9967V7.9967H19V4.9967H5ZM4 2.9967H20C20.5523 2.9967 21 3.44442 21 3.9967V8.9967C21 9.54899 20.5523 9.9967 20 9.9967H4C3.44772 9.9967 3 9.54899 3 8.9967V3.9967C3 3.44442 3.44772 2.9967 4 2.9967ZM6 11.9967H12C12.5523 11.9967 13 12.4444 13 12.9967V15.9967H14V21.9967H10V15.9967H11V13.9967H5C4.44772 13.9967 4 13.549 4 12.9967V10.9967H6V11.9967ZM17.7322 13.7289L19.5 11.9612L21.2678 13.7289C22.2441 14.7052 22.2441 16.2882 21.2678 17.2645C20.2915 18.2408 18.7085 18.2408 17.7322 17.2645C16.7559 16.2882 16.7559 14.7052 17.7322 13.7289Z"/></symbol>
<symbol id="ri-layout-box-line" viewBox="0 0 24 24"><path fill="currentColor" d="M21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V20ZM11 5H5V19H11V5ZM19 13H13V19H19V13ZM19 5H13V11H19V5Z"/></symbol>
<symbol id="ri-loader-line" viewBox="0 0 24 24"><path fill="currentColor" d="M11.9995 2C12.5518 2 12.9995 2.44772 12.9995 3V6C12.9995 6.55228 12.5518 7 11.9995 7C11.4472 7 10.9995 6.55228 10.9995 6V3C10.9995 2.44772 11.4472 2 11.9995 2ZM11.9995 17C12.5518 17 12.9995 17.4477 12.9995 18V21C12.9995 21.5523 12.5518 22 11.9995 22C11.4472 22 10.9995 21.5523 10.9995 21V18C10.9995 17.4477 11.4472 17 11.9995 17ZM20.6597 7C20.9359 7.47829 20.772 8.08988 20.2937 8.36602L17.6956 9.86602C17.2173 10.1422 16.6057 9.97829 16.3296 9.5C16.0535 9.02171 16.2173 8.41012 16.6956 8.13398L19.2937 6.63397C19.772 6.35783 20.3836 6.52171 20.6597 7ZM7.66935 14.5C7.94549 14.9783 7.78161 15.5899 7.30332 15.866L4.70525 17.366C4.22695 17.6422 3.61536 17.4783 3.33922 17C3.06308 16.5217 3.22695 15.9101 3.70525 15.634L6.30332 14.134C6.78161 13.8578 7.3932 14.0217 7.66935 14.5ZM20.6597 17C20.3836 17.4783 19.772 17.6422 19.2937 17.366L16.6956 15.866C16.2173 15.5899 16.0535 14.9783 16.3296 14.5C16.6057 14.0217 17.2173 13.8578 17.6956 14.134L20.2937 15.634C20.772 15.9101 20.9359 16.5217 20.6597 17ZM7.66935 9.5C7.3932 9.97829 6.78161 10.1422 6.30332 9.86602L3.70525 8.36602C3.22695 8.08988 3.06308 7.47829 3.33922 7C3.61536 6.52171 4.22695 6.35783 4.70525 6.63397L7.30332 8.13398C7.78161 8.41012 7.94549 9.02171 7.66935 9.5Z"/></symbol>
<symbol id="ri-check-line" viewBox="0 0 24 24"><path fill="currentColor" d="M9.9997 15.1709L19.1921 5.97852L20.6063 7.39273L9.9997 17.9993L3.63574 11.6354L5.04996 10.2212L9.9997 15.1709Z"/></symbol>
<symbol id="ri-clipboard-line" viewBox="0 0 24 24"><path fill="currentColor" d="M7 4V2H17V4H20.0066C20.5552 4 21 4.44495 21 4.9934V21.0066C21 21.5552 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5551 3 21.0066V4.9934C3 4.44476 3.44495 4 3.9934 4H7ZM7 6H5V20H19V6H17V8H7V6ZM9 4V6H15V4H9Z"/></symbol>
<symbol id="ri-checkbox-circle-line" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20ZM16.4645 8.53553L17.8787 9.94975L11.5147 16.3137L6.56497 11.364L7.97918 9.94975L11.5147 13.4853L16.4645 8.53553Z"/></symbol>
<symbol id="ri-error-warning-line" viewBox="0 0 24 24"><path fill="currentColor" d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM11 15H13V17H11V15ZM11 7H13V13H11V7Z"/></symbol>
</defs>
</svg>
<!-- End Inline SVG Icons -->
<!-- ==============================
HEADER
============================== -->
<header>
<!-- Mobile: Search button (must be first to avoid parent display:none issues) -->
<button
type="button"
class="mobile-search-btn"
data-on:click="$sidebarOpen = false; $searchOpen = true"
aria-label="Open search"
>
<svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M11 2C15.968 2 20 6.032 20 11C20 15.968 15.968 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2ZM11 18C14.8675 18 18 14.8675 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18ZM19.4853 18.0711L22.3137 20.8995L20.8995 22.3137L18.0711 19.4853L19.4853 18.0711Z" />
</svg>
</button>
<!-- Hamburger Menu Toggle -->
<button
type="button"
class="hamburger"
aria-label="Toggle menu"
data-class:is-open="$sidebarOpen === true"
data-on:click="$searchOpen = false; $sidebarOpen = !$sidebarOpen"
>
<input type="checkbox" data-attr:checked="$sidebarOpen === true" />
<svg viewBox="0 0 32 32">
<path class="line line-top-bottom" d="M27 10 13 10C10.8 10 9 8.2 9 6 9 3.5 10.8 2 13 2 15.2 2 17 3.8 17 6L17 26C17 28.2 18.8 30 21 30 23.2 30 25 28.2 25 26 25 23.8 23.2 22 21 22L7 22" />
<path class="line" d="M7 16 27 16" />
</svg>
</button>
<!-- Brand / Logo -->
<div class="brand" data-on:click="location.hash = ''">
<h1 class="visually-hidden">CSS Ref - CSS Properties Reference</h1>
<svg class="brand-logo" viewBox="0 0 480 211" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M437.529,119.589l0,50.88c0,1.56 -1.24,2.644 -2.766,2.418l-103.42,-15.265c-1.527,-0.225 -2.766,-1.675 -2.766,-3.235l0,-50.88c0,-1.56 1.24,-2.644 2.766,-2.418l103.42,15.265c1.527,0.225 2.766,1.675 2.766,3.235Z" fill="#212b48" fill-rule="evenodd" clip-rule="evenodd"/>
<g>
<path d="M341.841,147.584c-0.601,-0.089 -1.107,-0.369 -1.518,-0.841c-0.411,-0.472 -0.617,-1.008 -0.617,-1.609l0,-29.04c0,-0.601 0.206,-1.085 0.617,-1.451c0.411,-0.366 0.917,-0.505 1.518,-0.416l11.056,1.632c3.005,0.444 5.457,1.233 7.355,2.367c1.898,1.134 3.298,2.488 4.199,4.06c0.902,1.572 1.352,3.276 1.352,5.111c0,1.835 -0.514,3.467 -1.542,4.897c-1.028,1.43 -2.586,2.355 -4.674,2.774c1.329,0.544 2.388,1.325 3.179,2.344c0.791,1.018 1.384,2.126 1.779,3.323c0.395,1.197 0.656,2.335 0.783,3.413c0.127,1.078 0.19,1.95 0.19,2.614l0,2.183c0,0.601 -0.206,1.077 -0.617,1.427c-0.411,0.351 -0.917,0.481 -1.518,0.393c-0.664,-0.098 -1.194,-0.374 -1.59,-0.828c-0.395,-0.454 -0.593,-0.997 -0.593,-1.63l0,-1.424c0,-0.791 -0.055,-1.732 -0.166,-2.824c-0.111,-1.092 -0.388,-2.193 -0.83,-3.302c-0.443,-1.109 -1.163,-2.078 -2.159,-2.905c-0.996,-0.827 -2.396,-1.374 -4.199,-1.64l-9.822,-1.45l0,11.009c0,0.601 -0.214,1.076 -0.641,1.424c-0.427,0.348 -0.941,0.478 -1.542,0.389Zm2.183,-16.903l8.589,1.268c2.657,0.392 4.801,0.187 6.43,-0.617c1.629,-0.803 2.444,-2.217 2.444,-4.242c0,-1.17 -0.269,-2.238 -0.807,-3.203c-0.538,-0.965 -1.471,-1.791 -2.8,-2.477c-1.329,-0.686 -3.163,-1.202 -5.504,-1.548l-8.351,-1.233l0,12.053Z" fill="#e78a53" fill-rule="nonzero"/>
<path d="M375.627,152.452c-0.601,-0.089 -1.107,-0.369 -1.518,-0.841c-0.411,-0.472 -0.617,-1.008 -0.617,-1.609l0,-28.803c0,-0.601 0.206,-1.085 0.617,-1.451c0.411,-0.366 0.917,-0.505 1.518,-0.416l19.028,2.809c0.569,0.084 1.052,0.353 1.447,0.807c0.395,0.454 0.593,0.965 0.593,1.535c0,0.569 -0.198,1.015 -0.593,1.336c-0.395,0.321 -0.878,0.44 -1.447,0.356l-16.845,-2.486l0,10.487l15.137,2.234c0.569,0.084 1.052,0.353 1.447,0.807c0.395,0.454 0.593,0.965 0.593,1.535c0,0.569 -0.198,1.015 -0.593,1.336c-0.395,0.321 -0.878,0.44 -1.447,0.356l-15.137,-2.234l0,10.534l16.845,2.486c0.569,0.084 1.052,0.353 1.447,0.807c0.395,0.454 0.593,0.965 0.593,1.535c0,0.569 -0.198,1.015 -0.593,1.336c-0.395,0.321 -0.878,0.44 -1.447,0.356l-19.028,-2.809Z" fill="#e78a53" fill-rule="nonzero"/>
<path d="M405.901,157.04c-0.601,-0.089 -1.107,-0.369 -1.518,-0.841c-0.411,-0.472 -0.617,-1.008 -0.617,-1.609l0,-29.04c0,-0.601 0.206,-1.085 0.617,-1.451c0.411,-0.366 0.917,-0.505 1.518,-0.416l18.459,2.725c0.569,0.084 1.052,0.353 1.447,0.807c0.395,0.454 0.593,0.965 0.593,1.535c0,0.569 -0.198,1.015 -0.593,1.336c-0.395,0.321 -0.878,0.44 -1.447,0.356l-16.276,-2.402l0,10.487l14.615,2.157c0.569,0.084 1.052,0.353 1.447,0.807c0.395,0.454 0.593,0.965 0.593,1.535c0,0.569 -0.198,1.015 -0.593,1.336c-0.395,0.321 -0.878,0.44 -1.447,0.356l-14.615,-2.157l0,12.67c0,0.601 -0.214,1.076 -0.641,1.424c-0.427,0.348 -0.941,0.478 -1.542,0.389Z" fill="#e78a53" fill-rule="nonzero"/>
</g>
<path d="M135.069,194.649l-60.599,0c-20.862,0 -36.26,-4.139 -46.195,-12.418c-9.934,-8.279 -14.901,-21.028 -14.901,-38.247l0,-77.239c0,-17.385 4.967,-30.217 14.901,-38.495c9.934,-8.279 25.332,-12.418 46.195,-12.418l60.599,0c5.961,0 8.941,2.98 8.941,8.941l0,30.051c0,5.961 -2.98,8.941 -8.941,8.941l-49.92,0c-10.1,0 -15.15,4.139 -15.15,12.418l0,59.109c0,7.947 5.05,11.921 15.15,11.921l49.92,0c5.961,0 8.941,2.98 8.941,8.941l0,29.555c0,5.961 -2.98,8.941 -8.941,8.941Z" fill="#e68953" fill-rule="nonzero"/>
<path d="M255.026,194.649l-78.481,0c-5.961,0 -8.941,-2.98 -8.941,-8.941l0,-29.058c0,-5.961 2.98,-8.941 8.941,-8.941l66.808,0c2.152,0 3.767,-0.704 4.843,-2.111c1.076,-1.407 1.614,-3.104 1.614,-5.091c0,-2.815 -0.538,-4.884 -1.614,-6.209c-1.076,-1.325 -2.691,-2.07 -4.843,-2.235l-37.254,-5.216c-11.59,-1.821 -20.903,-5.671 -27.94,-11.549c-7.037,-5.878 -10.555,-15.771 -10.555,-29.679l0,-26.078c0,-14.239 4.553,-25.084 13.66,-32.535c9.106,-7.451 21.69,-11.176 37.75,-11.176l69.54,0c5.961,0 8.941,2.98 8.941,8.941l0,29.555c0,5.961 -2.98,8.941 -8.941,8.941l-57.867,0c-4.47,0 -6.706,2.484 -6.706,7.451c0,4.802 2.235,7.451 6.706,7.947l37.005,4.967c7.782,1.159 14.57,3.187 20.365,6.085c5.795,2.898 10.307,7.161 13.535,12.79c3.229,5.629 4.843,13.08 4.843,22.352l0,26.078c0,14.074 -4.553,24.877 -13.66,32.411c-9.106,7.534 -21.69,11.3 -37.75,11.3Z" fill="#e68953" fill-rule="nonzero"/>
<path d="M328.558,95.97c-1.443,-0.293 -0.763,-6.61 -0.763,-10.35l0,-26.078c0,-14.239 4.553,-25.084 13.66,-32.535c9.106,-7.451 21.69,-11.176 37.75,-11.176l69.54,0c5.961,0 8.941,2.98 8.941,8.941l0,29.555c0,5.961 -2.98,8.941 -8.941,8.941l-57.867,0c-4.47,0 -6.706,2.484 -6.706,7.451c0,4.802 2.235,7.451 6.706,7.947l37.005,4.967c7.782,1.159 14.57,3.187 20.365,6.085c5.795,2.898 10.307,7.161 13.535,12.79c3.229,5.629 4.843,13.08 4.843,22.352l0,26.078c0,14.074 -4.553,24.877 -13.66,32.411c-9.106,7.534 -21.69,11.3 -37.75,11.3l-78.481,0c-5.961,0 -8.941,-2.98 -8.941,-8.941c0,0 -0.999,-24.026 0,-23.901c18.478,2.307 111.479,16.455 111.479,16.455c1.781,0.263 3.227,-1.001 3.227,-2.821l0,-59.354c0,-1.82 -1.446,-3.511 -3.227,-3.774c0,0 -91.993,-12.538 -110.716,-16.342Z" fill="#e68953"/>
</g>
</svg>
</div>
<!-- Desktop Search -->
<div class="search-shell desktop-search">
<div class="search-main">
<!-- Collections Dropdown -->
<div class="search-dropdown search-filter-prefix" data-on:click__outside="$collectionNavOpen = false">
<button
type="button"
class="search-dropdown-trigger"
data-on:click="$collectionNavOpen = !$collectionNavOpen"
data-attr:aria-expanded="$collectionNavOpen ? 'true' : 'false'"
aria-haspopup="listbox"
>
<span>Collections</span>
</button>
<ul class="search-dropdown-menu" data-show="$collectionNavOpen" role="listbox">
<li>
<button type="button" class="search-option" onclick="location.hash='!flexbox';$collectionNavOpen=false">
<i class="ri-layout-row-line"></i> Flexbox
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!grid';$collectionNavOpen=false">
<i class="ri-layout-column-line"></i> Grid
</button>
</li>
<li>
<button
type="button"
class="search-option"
onclick="location.hash='!typography';$collectionNavOpen=false"
>
<i class="ri-font-size"></i> Typography
</button>
</li>
<li>
<button
type="button"
class="search-option"
onclick="location.hash='!animation';$collectionNavOpen=false"
>
<i class="ri-movie-line"></i> Animation
</button>
</li>
<li>
<button
type="button"
class="search-option"
onclick="location.hash='!color';$collectionNavOpen=false"
>
<i class="ri-palette-line"></i> Color
</button>
</li>
<li>
<button
type="button"
class="search-option"
onclick="location.hash='!layout';$collectionNavOpen=false"
>
<i class="ri-layout-grid-line"></i> Layout
</button>
</li>
<li>
<button
type="button"
class="search-option"
onclick="location.hash='!backgrounds';$collectionNavOpen=false"
>
<i class="ri-paint-brush-line"></i> Backgrounds
</button>
</li>
<li>
<button
type="button"
class="search-option"
onclick="location.hash='!box-model';$collectionNavOpen=false"
>
<i class="ri-layout-box-line"></i> Box Model
</button>
</li>
<li>
<button
type="button"
class="search-option"
onclick="location.hash='!transitions';$collectionNavOpen=false"
>
<i class="ri-loader-line"></i> Transitions
</button>
</li>
</ul>
</div>
<div class="search-input-wrapper">
<svg class="search-input-icon" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path
d="M11 2C15.968 2 20 6.032 20 11C20 15.968 15.968 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2ZM11 18C14.8675 18 18 14.8675 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18ZM19.4853 18.0711L22.3137 20.8995L20.8995 22.3137L18.0711 19.4853L19.4853 18.0711Z"
/>
</svg>
<input
type="search"
id="search-desktop"
class="search-input"
data-bind:query
placeholder="Search..."
aria-label="Search CSS properties"
autocomplete="off"
spellcheck="false"
/>
<div class="search-selects">
<button
type="button"
class="clear-filters-btn"
data-show="$activeCats.length || $activeInterops.length"
data-on:click="$activeCats = []; $activeInterops = []; $activeBrowsers = []"
title="Clear all filters"
>
<svg viewBox="0 0 24 24" width="16" height="16" fill="currentColor">
<path
d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
/>
</svg>
</button>
<div class="search-dropdown" data-on:click__outside="$catOpen = false">
<button
type="button"
class="search-dropdown-trigger"
data-on:click="$interopOpen = false; $browserOpen = false; $catOpen = !$catOpen"
data-attr:aria-expanded="$catOpen ? 'true' : 'false'"
aria-haspopup="listbox"
>
<span data-text="$activeCats.length ? $activeCats[0] : 'category'"></span>
</button>
<ul class="search-dropdown-menu" data-show="$catOpen" role="listbox">
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.length === 0"
data-on:click="$activeCats = []; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
All
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Layout')"
data-on:click="$activeCats = ['Layout']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Layout
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Flexbox')"
data-on:click="$activeCats = ['Flexbox']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Flexbox
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Grid')"
data-on:click="$activeCats = ['Grid']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Grid
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Typography')"
data-on:click="$activeCats = ['Typography']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Typography
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Color')"
data-on:click="$activeCats = ['Color']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Color
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Sizing')"
data-on:click="$activeCats = ['Sizing']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Sizing
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Visual')"
data-on:click="$activeCats = ['Visual']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Visual
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Animation')"
data-on:click="$activeCats = ['Animation']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Animation
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Transform')"
data-on:click="$activeCats = ['Transform']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Transform
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Spacing')"
data-on:click="$activeCats = ['Spacing']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Spacing
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Interactivity')"
data-on:click="$activeCats = ['Interactivity']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Interactivity
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('CSS Variables')"
data-on:click="$activeCats = ['CSS Variables']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
CSS Variables
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Queries')"
data-on:click="$activeCats = ['Queries']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Queries
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Selectors')"
data-on:click="$activeCats = ['Selectors']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Selectors
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('UI Components')"
data-on:click="$activeCats = ['UI Components']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
UI Components
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Tables')"
data-on:click="$activeCats = ['Tables']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Tables
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Lists')"
data-on:click="$activeCats = ['Lists']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Lists
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Breaks')"
data-on:click="$activeCats = ['Breaks']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Breaks
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeCats.includes('Misc')"
data-on:click="$activeCats = ['Misc']; $catOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Misc
</button>
</li>
</ul>
</div>
<div class="search-dropdown" data-on:click__outside="$interopOpen = false">
<button
type="button"
class="search-dropdown-trigger"
data-on:click="$catOpen = false; $browserOpen = false; $interopOpen = !$interopOpen"
data-attr:aria-expanded="$interopOpen ? 'true' : 'false'"
aria-haspopup="listbox"
>
<span
data-text="$activeInterops.length === 0 ? 'interop' : ($activeInterops[0] === 'wide' ? 'available' : ($activeInterops[0] === 'b2024' ? 'baseline 2024' : ($activeInterops[0] === 'b2023' ? 'baseline 2023' : ($activeInterops[0] === 'b2022' ? 'baseline 2022' : ($activeInterops[0] === 'ltd' ? 'limited' : 'experimental')))))"
></span>
</button>
<ul class="search-dropdown-menu" data-show="$interopOpen" role="listbox">
<li>
<button
type="button"
class="search-option"
data-class:active="$activeInterops.length === 0"
data-on:click="$activeInterops = []; $interopOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
All
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeInterops.includes('wide')"
data-on:click="$activeInterops = ['wide']; $interopOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Available
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeInterops.includes('b2024')"
data-on:click="$activeInterops = ['b2024']; $interopOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Baseline 2024
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeInterops.includes('b2023')"
data-on:click="$activeInterops = ['b2023']; $interopOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Baseline 2023
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeInterops.includes('b2022')"
data-on:click="$activeInterops = ['b2022']; $interopOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Baseline 2022
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeInterops.includes('ltd')"
data-on:click="$activeInterops = ['ltd']; $interopOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Limited
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeInterops.includes('exp')"
data-on:click="$activeInterops = ['exp']; $interopOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Experimental
</button>
</li>
</ul>
</div>
<div class="search-dropdown" data-on:click__outside="$browserOpen = false">
<button
type="button"
class="search-dropdown-trigger"
data-on:click="$catOpen = false; $interopOpen = false; $browserOpen = !$browserOpen"
data-attr:aria-expanded="$browserOpen ? 'true' : 'false'"
aria-haspopup="listbox"
>
<span
data-text="$activeBrowsers.length ? ($activeBrowsers[0] === 'ch' ? 'Chrome' : $activeBrowsers[0] === 'ff' ? 'Firefox' : $activeBrowsers[0] === 'sf' ? 'Safari' : 'Edge') : 'browser'"
></span>
</button>
<ul class="search-dropdown-menu" data-show="$browserOpen" role="listbox">
<li>
<button
type="button"
class="search-option"
data-class:active="$activeBrowsers.length === 0"
data-on:click="$activeBrowsers = []; $browserOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
All
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeBrowsers.includes('ch')"
data-on:click="$activeBrowsers = ['ch']; $browserOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Chrome
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeBrowsers.includes('ff')"
data-on:click="$activeBrowsers = ['ff']; $browserOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Firefox
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeBrowsers.includes('sf')"
data-on:click="$activeBrowsers = ['sf']; $browserOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Safari
</button>
</li>
<li>
<button
type="button"
class="search-option"
data-class:active="$activeBrowsers.includes('ed')"
data-on:click="$activeBrowsers = ['ed']; $browserOpen = false"
onclick="this.closest('.search-dropdown-menu').style.display = 'none';"
>
Edge
</button>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Desktop Toggles Container -->
<div class="header-toggles">
<!-- Desktop View Toggle -->
<label class="view-switch big desktop-only" title="Toggle view mode">
<input
class="cb"
type="checkbox"
data-bind="$viewMode === 'table'"
data-on:change="$viewMode = $viewMode === 'grid' ? 'table' : 'grid'"
data-attr:checked="$viewMode === 'table'"
/>
<span class="view-toggle-3d">
<span class="left">Grid</span>
<span class="right">Table</span>
</span>
</label>
<!-- Desktop Theme Toggle -->
<label class="view-switch big desktop-only" title="Toggle theme">
<input
class="cb"
type="checkbox"
data-bind:$theme
data-on:change="$theme = $theme === 'dark' ? 'light' : 'dark'; document.documentElement.classList.toggle('dark', $theme === 'dark')"
data-attr:checked="$theme === 'light'"
/>
<span class="view-toggle-3d">
<span class="left">Dark</span>
<span class="right">Light</span>
</span>
</label>
</div>
<!-- End Desktop Toggles Container -->
</header>
<!-- End Header -->
<!-- ==============================
SIDEBAR (MOBILE)
============================== -->
<div class="sidebar-overlay" data-class:open="$sidebarOpen" data-on:click="$sidebarOpen = false"></div>
<aside
class="sidebar"
data-class:open="$sidebarOpen"
onclick="const dd = this.querySelector('.sidebar-collections-dropdown'); const menu = dd?.querySelector('.search-dropdown-menu'); if (menu && menu.style.display !== 'none' && !event.target.closest('.sidebar-collections-dropdown')) { menu.style.display = 'none'; dd.querySelector('.sidebar-dropdown-trigger').setAttribute('aria-expanded', 'false'); }"
>
<div class="sidebar-header">
<button type="button" class="sidebar-close" data-on:click="$sidebarOpen = false" aria-label="Close menu">
<svg viewBox="0 0 24 24" width="24" height="24" fill="currentColor">
<path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>
</svg>
</button>
</div>
<!-- Sidebar Content -->
<div class="sidebar-content">
<!-- View Mode Toggle -->
<div class="sidebar-section">
<span class="sidebar-label">View Mode</span>
<label class="view-switch big" title="Toggle view mode">
<input
class="cb"
type="checkbox"
data-bind="$viewMode === 'table'"
data-on:change="$viewMode = $viewMode === 'grid' ? 'table' : 'grid'"
data-attr:checked="$viewMode === 'table'"
/>
<span class="view-toggle-3d">
<span class="left">Grid</span>
<span class="right">Table</span>
</span>
</label>
</div>
<!-- Theme Toggle -->
<div class="sidebar-section">
<span class="sidebar-label">Theme</span>
<label class="view-switch big" title="Toggle theme">
<input
class="cb"
type="checkbox"
data-bind:$theme
data-on:change="$theme = $theme === 'dark' ? 'light' : 'dark'; document.documentElement.classList.toggle('dark', $theme === 'dark')"
data-attr:checked="$theme === 'light'"
/>
<span class="view-toggle-3d">
<span class="left">Dark</span>
<span class="right">Light</span>
</span>
</label>
</div>
<!-- Collections Dropdown -->
<div class="sidebar-section sidebar-collections-section">
<div class="search-dropdown sidebar-collections-dropdown" onclick="const menu = this.querySelector('.search-dropdown-menu'); if (event.target.closest('.search-dropdown-menu')) return; if (menu && menu.style.display !== 'none') { menu.style.display = 'none'; this.querySelector('.sidebar-dropdown-trigger').setAttribute('aria-expanded', 'false'); }">
<button type="button" class="sidebar-dropdown-trigger"
onclick="event.stopPropagation(); const menu = this.nextElementSibling; menu.style.display = menu.style.display === 'none' || !menu.style.display ? 'block' : 'none'; this.setAttribute('aria-expanded', menu.style.display !== 'none'); return false;"
aria-expanded="false"
aria-haspopup="listbox">
<span>Collections</span>
</button>
<ul class="search-dropdown-menu" style="display: none;" role="listbox">
<li>
<button type="button" class="search-option" onclick="location.hash='!flexbox'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-layout-row-line"></i> Flexbox
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!grid'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-layout-column-line"></i> Grid
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!typography'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-font-size"></i> Typography
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!animation'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-movie-line"></i> Animation
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!color'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-palette-line"></i> Color
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!layout'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-layout-grid-line"></i> Layout
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!backgrounds'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-paint-brush-line"></i> Backgrounds
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!box-model'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-layout-box-line"></i> Box Model
</button>
</li>
<li>
<button type="button" class="search-option" onclick="location.hash='!transitions'; this.closest('.search-dropdown-menu').style.display = 'none'; this.closest('.search-dropdown-menu').previousElementSibling.setAttribute('aria-expanded', 'false');">
<i class="ri-loader-line"></i> Transitions
</button>
</li>
</ul>
</div>
</div>
<!-- End Collections Dropdown -->
</div>
<!-- End Sidebar Content -->
</aside>
<!-- End Sidebar -->
<!-- ==============================
COMMAND PALETTE (MOBILE SEARCH)
============================== -->
<div class="command-palette-overlay" data-class:open="$searchOpen" data-on:click="$searchOpen = false"></div>
<div
class="command-palette"
data-class:open="$searchOpen"
data-on:keydown__window="evt.key === 'Escape' && ($searchOpen = false)"
>
<!-- Close Button -->
<button type="button" class="command-palette-close" data-on:click="$searchOpen = false" aria-label="Close">
<svg viewBox="0 0 24 24" width="20" height="20" fill="currentColor">
<path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>
</svg>
</button>
<!-- Search Header -->
<div class="command-palette-header">
<!-- Search Input -->
<div class="command-palette-search">
<svg class="search-icon-lg" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path
d="M11 2C15.968 2 20 6.032 20 11C20 15.968 15.968 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2ZM11 18C14.8675 18 18 14.8675 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18ZM19.4853 18.0711L22.3137 20.8995L20.8995 22.3137L18.0711 19.4853L19.4853 18.0711Z"
/>
</svg>
<input
type="search"
id="search-mobile"
class="command-palette-input"
data-bind:query
placeholder="Search properties..."
aria-label="Search CSS properties"
autocomplete="off"
spellcheck="false"
data-on-mount="setTimeout(()=>document.getElementById('search-mobile').focus(), 100)"
/>
</div>
<!-- Filter Dropdowns -->
<div class="command-palette-filters">
<div class="search-selects">
<!-- Category Dropdown -->
<div class="search-dropdown" data-on:click__outside="$searchCatOpen = false">
<button
type="button"
class="search-dropdown-trigger"
data-on:click="$searchInteropOpen = false; $searchBrowserOpen = false; $searchCatOpen = !$searchCatOpen"
data-attr:aria-expanded="$searchCatOpen ? 'true' : 'false'"
aria-haspopup="listbox"
>
<span data-text="$activeCats.length ? $activeCats[0] : 'category'"></span>
</button>
<ul class="search-dropdown-menu" data-show="$searchCatOpen" role="listbox">
<li>
<button type="button" class="search-option" data-class:active="$activeCats.length === 0" data-on:click="$activeCats = []; $searchCatOpen = false">All</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Layout')" data-on:click="$activeCats = ['Layout']; $searchCatOpen = false">Layout</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Flexbox')" data-on:click="$activeCats = ['Flexbox']; $searchCatOpen = false">Flexbox</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Grid')" data-on:click="$activeCats = ['Grid']; $searchCatOpen = false">Grid</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Typography')" data-on:click="$activeCats = ['Typography']; $searchCatOpen = false">Typography</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Color')" data-on:click="$activeCats = ['Color']; $searchCatOpen = false">Color</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Sizing')" data-on:click="$activeCats = ['Sizing']; $searchCatOpen = false">Sizing</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Visual')" data-on:click="$activeCats = ['Visual']; $searchCatOpen = false">Visual</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Animation')" data-on:click="$activeCats = ['Animation']; $searchCatOpen = false">Animation</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Transform')" data-on:click="$activeCats = ['Transform']; $searchCatOpen = false">Transform</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Spacing')" data-on:click="$activeCats = ['Spacing']; $searchCatOpen = false">Spacing</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Interactivity')" data-on:click="$activeCats = ['Interactivity']; $searchCatOpen = false">Interactivity</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('CSS Variables')" data-on:click="$activeCats = ['CSS Variables']; $searchCatOpen = false">CSS Variables</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Queries')" data-on:click="$activeCats = ['Queries']; $searchCatOpen = false">Queries</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Selectors')" data-on:click="$activeCats = ['Selectors']; $searchCatOpen = false">Selectors</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('UI Components')" data-on:click="$activeCats = ['UI Components']; $searchCatOpen = false">UI Components</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Tables')" data-on:click="$activeCats = ['Tables']; $searchCatOpen = false">Tables</button>
</li>
<li>
<button type="button" class="search-option" data-class:active="$activeCats.includes('Lists')" data-on:click="$activeCats = ['Lists']; $searchCatOpen = false">Lists</button>