-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
1455 lines (1324 loc) · 115 KB
/
index.html
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" dir="ltr">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Title -->
<title>Tailmater | Tailwind Material 3 UI</title>
<!-- Development css (used in all pages) -->
<link rel="stylesheet" id="stylesheet" href="src/css/style.css">
<!-- google font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600;700&display=swap" rel="stylesheet">
<!-- icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!-- Favicon -->
<link rel="icon" href="src/img/logo.png">
</head>
<body class="font-sans text-base font-normal text-gray-700 dark:text-gray-200 bg-surface-100 dark:bg-surfacedark-100">
<!-- preloader -->
<div class="preloader loaded-success fixed inset-0 z-50 bg-neutral-10 dark:bg-neutral-900">
<div class="w-full h-screen flex justify-center items-center">
<!-- loader -->
<svg class="circular-loader relative w-[100px] h-[100px]">
<circle class="path stroke-primary-600 dark:stroke-primary-200" cx="50" cy="50" r="20" fill="none" stroke-width="5" stroke-miterlimit="10"></circle>
</svg>
</div>
</div>
<header>
<div class="w-full h-16 fixed md:relative top-0 left-0 right-0 bg-surface-200 dark:bg-surfacedark-200 md:bg-transparent md:dark:bg-transparent flex flex-row items-center justify-between md:justify-center gap-1.5 z-50">
<!-- logo -->
<a href="https://aribudin.github.io/tailmater/" target="_blank" class="md:hidden relative px-6">
<svg xmlns="http://www.w3.org/2000/svg" class="w-10 h-10" version="1.0" viewBox="0 0 317.000000 319.000000" preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,319.000000) scale(0.100000,-0.100000)" fill="currentColor" stroke="none">
<path class="fill-primary-200 dark:fill-primary-600" d="M285 3092 c-70 -34 -112 -72 -151 -139 -26 -43 -28 -57 -29 -143 0 -86 3 -100 28 -144 16 -27 45 -70 66 -95 46 -55 56 -75 64 -121 10 -54 -7 -107 -51 -158 -21 -26 -54 -74 -73 -107 -32 -56 -34 -66 -34 -150 0 -83 2 -94 33 -149 18 -33 50 -79 72 -103 74 -84 73 -187 -4 -278 -23 -27 -55 -72 -72 -100 -26 -45 -29 -58 -29 -140 0 -80 3 -96 29 -144 15 -30 50 -81 76 -114 78 -96 75 -172 -10 -282 -83 -107 -95 -137 -95 -240 0 -86 2 -93 35 -150 40 -68 114 -130 174 -146 125 -34 231 -6 345 93 85 74 179 76 268 5 83 -64 121 -87 172 -103 115 -35 220 -3 351 107 84 70 176 63 273 -21 32 -27 64 -50 70 -50 6 0 18 -6 26 -13 9 -8 35 -19 57 -25 151 -43 307 34 376 186 20 44 26 141 12 198 -10 44 -62 133 -105 182 -66 75 -65 174 1 252 94 113 123 197 108 311 -8 63 -50 143 -103 199 -79 82 -75 190 10 287 25 28 45 56 45 61 0 5 9 20 19 33 24 32 39 129 29 197 -11 73 -88 202 -121 202 -5 0 -21 8 -35 18 -71 49 -215 52 -297 5 -80 -44 -90 -54 -126 -118 -31 -57 -33 -65 -34 -160 0 -113 12 -145 92 -240 48 -58 63 -92 63 -139 0 -63 -13 -97 -55 -144 -23 -26 -55 -71 -71 -101 -26 -49 -29 -63 -29 -150 0 -110 13 -142 96 -245 53 -66 65 -107 54 -187 -6 -44 -14 -57 -70 -112 -71 -72 -120 -92 -195 -82 -36 5 -59 17 -98 51 -29 25 -78 60 -109 77 -53 28 -66 31 -148 32 -84 0 -94 -2 -150 -34 -33 -19 -81 -54 -108 -77 -36 -33 -58 -44 -96 -49 -79 -11 -124 8 -196 80 -54 54 -65 70 -70 110 -13 80 0 118 70 212 73 100 90 150 83 252 -6 80 -41 155 -103 222 -75 81 -74 181 2 275 86 105 98 136 98 249 0 98 -1 101 -38 163 -21 35 -51 78 -66 95 -41 47 -51 71 -51 119 0 67 15 105 64 159 73 82 91 128 91 239 0 86 -3 100 -28 145 -39 67 -61 90 -126 127 -47 26 -69 32 -136 35 -72 4 -86 1 -140 -25z"/>
<path class="fill-primary-600 dark:fill-primary-200" d="M1098 3105 c-88 -24 -187 -128 -209 -219 -19 -77 -7 -168 30 -227 17 -28 31 -54 31 -58 0 -4 14 -20 31 -37 41 -38 59 -82 59 -143 0 -66 -12 -94 -65 -153 -25 -28 -45 -55 -45 -60 0 -5 -10 -24 -22 -41 -20 -28 -23 -44 -23 -127 0 -85 3 -100 27 -145 15 -27 49 -76 75 -108 43 -54 47 -64 51 -122 5 -72 -15 -124 -68 -180 -15 -16 -41 -52 -57 -80 -25 -45 -28 -60 -28 -140 0 -80 3 -96 29 -145 28 -55 72 -110 88 -110 5 0 21 -8 35 -17 68 -45 159 -55 241 -27 147 48 233 189 210 341 -9 55 -47 142 -73 163 -40 33 -78 106 -83 156 -6 67 9 108 59 169 61 73 87 124 96 185 17 111 -13 202 -103 304 -48 55 -61 103 -50 179 11 75 124 186 204 201 56 10 121 -11 176 -58 28 -23 74 -55 101 -72 46 -27 58 -29 145 -29 108 0 142 13 225 85 65 57 96 70 160 70 75 0 110 -17 172 -82 92 -99 98 -199 15 -293 -47 -53 -97 -147 -106 -197 -9 -51 10 -160 36 -205 12 -21 41 -62 66 -91 52 -62 66 -107 57 -178 -5 -44 -14 -61 -56 -109 -75 -86 -104 -154 -104 -245 0 -90 28 -156 105 -249 42 -49 51 -67 56 -113 8 -65 -14 -123 -68 -184 -86 -97 -114 -201 -83 -307 47 -163 192 -254 357 -225 168 29 271 178 247 356 -9 68 -32 111 -100 194 -87 105 -78 194 32 324 44 53 69 116 72 185 5 101 -26 176 -118 285 -39 45 -40 50 -40 119 0 70 1 73 45 129 25 31 50 65 55 74 6 9 18 28 27 42 17 26 37 125 33 170 -4 46 -24 105 -50 142 -14 20 -25 40 -25 43 0 4 -18 27 -39 51 -65 74 -67 170 -6 247 101 126 131 211 113 323 -15 100 -75 176 -174 225 -40 20 -64 24 -134 24 -95 -1 -129 -15 -245 -104 -32 -24 -76 -48 -97 -53 -74 -16 -110 -2 -245 99 -132 98 -284 80 -437 -53 -81 -70 -182 -71 -260 -3 -24 22 -47 39 -51 39 -3 0 -21 11 -39 25 -65 49 -168 65 -258 40z"/>
</g>
</svg>
</a>
<!-- title -->
<h2 class="text-[1.375rem] leading-7">Components</h2>
<!-- light dark -->
<div class="md:hidden relative px-4" aria-label="Brightness" data-microtip-position="bottom" role="tooltip" >
<!-- light & dark -->
<button data-type="theme" id="lightdark" class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined dark-hidden">light_mode</span>
<span class="material-symbols-outlined dark-block">dark_mode</span>
</button>
</div>
</div>
</header>
<main class="flex flex-row gap-4 md:pl-24 px-2 md:pr-0 pt-20 md:pt-0">
<!-- navigation rail -->
<div class="w-full md:w-24 fixed left-0 md:top-0 bottom-0 right-0 md:h-screen flex items-center flex-row md:flex-col gap-8 py-4 bg-surface-200 dark:bg-surfacedark-200 z-50">
<!-- logo -->
<a href="https://aribudin.github.io/tailmater/" target="_blank" class="hidden md:flex relative mb-8">
<div aria-label="Tailmater - Tailwind Material 3 UI" data-microtip-position="right" role="tooltip">
<svg xmlns="http://www.w3.org/2000/svg" class="w-10 h-10" version="1.0" viewBox="0 0 317.000000 319.000000" preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,319.000000) scale(0.100000,-0.100000)" fill="currentColor" stroke="none">
<path class="fill-primary-200 dark:fill-primary-600" d="M285 3092 c-70 -34 -112 -72 -151 -139 -26 -43 -28 -57 -29 -143 0 -86 3 -100 28 -144 16 -27 45 -70 66 -95 46 -55 56 -75 64 -121 10 -54 -7 -107 -51 -158 -21 -26 -54 -74 -73 -107 -32 -56 -34 -66 -34 -150 0 -83 2 -94 33 -149 18 -33 50 -79 72 -103 74 -84 73 -187 -4 -278 -23 -27 -55 -72 -72 -100 -26 -45 -29 -58 -29 -140 0 -80 3 -96 29 -144 15 -30 50 -81 76 -114 78 -96 75 -172 -10 -282 -83 -107 -95 -137 -95 -240 0 -86 2 -93 35 -150 40 -68 114 -130 174 -146 125 -34 231 -6 345 93 85 74 179 76 268 5 83 -64 121 -87 172 -103 115 -35 220 -3 351 107 84 70 176 63 273 -21 32 -27 64 -50 70 -50 6 0 18 -6 26 -13 9 -8 35 -19 57 -25 151 -43 307 34 376 186 20 44 26 141 12 198 -10 44 -62 133 -105 182 -66 75 -65 174 1 252 94 113 123 197 108 311 -8 63 -50 143 -103 199 -79 82 -75 190 10 287 25 28 45 56 45 61 0 5 9 20 19 33 24 32 39 129 29 197 -11 73 -88 202 -121 202 -5 0 -21 8 -35 18 -71 49 -215 52 -297 5 -80 -44 -90 -54 -126 -118 -31 -57 -33 -65 -34 -160 0 -113 12 -145 92 -240 48 -58 63 -92 63 -139 0 -63 -13 -97 -55 -144 -23 -26 -55 -71 -71 -101 -26 -49 -29 -63 -29 -150 0 -110 13 -142 96 -245 53 -66 65 -107 54 -187 -6 -44 -14 -57 -70 -112 -71 -72 -120 -92 -195 -82 -36 5 -59 17 -98 51 -29 25 -78 60 -109 77 -53 28 -66 31 -148 32 -84 0 -94 -2 -150 -34 -33 -19 -81 -54 -108 -77 -36 -33 -58 -44 -96 -49 -79 -11 -124 8 -196 80 -54 54 -65 70 -70 110 -13 80 0 118 70 212 73 100 90 150 83 252 -6 80 -41 155 -103 222 -75 81 -74 181 2 275 86 105 98 136 98 249 0 98 -1 101 -38 163 -21 35 -51 78 -66 95 -41 47 -51 71 -51 119 0 67 15 105 64 159 73 82 91 128 91 239 0 86 -3 100 -28 145 -39 67 -61 90 -126 127 -47 26 -69 32 -136 35 -72 4 -86 1 -140 -25z"/>
<path class="fill-primary-600 dark:fill-primary-200" d="M1098 3105 c-88 -24 -187 -128 -209 -219 -19 -77 -7 -168 30 -227 17 -28 31 -54 31 -58 0 -4 14 -20 31 -37 41 -38 59 -82 59 -143 0 -66 -12 -94 -65 -153 -25 -28 -45 -55 -45 -60 0 -5 -10 -24 -22 -41 -20 -28 -23 -44 -23 -127 0 -85 3 -100 27 -145 15 -27 49 -76 75 -108 43 -54 47 -64 51 -122 5 -72 -15 -124 -68 -180 -15 -16 -41 -52 -57 -80 -25 -45 -28 -60 -28 -140 0 -80 3 -96 29 -145 28 -55 72 -110 88 -110 5 0 21 -8 35 -17 68 -45 159 -55 241 -27 147 48 233 189 210 341 -9 55 -47 142 -73 163 -40 33 -78 106 -83 156 -6 67 9 108 59 169 61 73 87 124 96 185 17 111 -13 202 -103 304 -48 55 -61 103 -50 179 11 75 124 186 204 201 56 10 121 -11 176 -58 28 -23 74 -55 101 -72 46 -27 58 -29 145 -29 108 0 142 13 225 85 65 57 96 70 160 70 75 0 110 -17 172 -82 92 -99 98 -199 15 -293 -47 -53 -97 -147 -106 -197 -9 -51 10 -160 36 -205 12 -21 41 -62 66 -91 52 -62 66 -107 57 -178 -5 -44 -14 -61 -56 -109 -75 -86 -104 -154 -104 -245 0 -90 28 -156 105 -249 42 -49 51 -67 56 -113 8 -65 -14 -123 -68 -184 -86 -97 -114 -201 -83 -307 47 -163 192 -254 357 -225 168 29 271 178 247 356 -9 68 -32 111 -100 194 -87 105 -78 194 32 324 44 53 69 116 72 185 5 101 -26 176 -118 285 -39 45 -40 50 -40 119 0 70 1 73 45 129 25 31 50 65 55 74 6 9 18 28 27 42 17 26 37 125 33 170 -4 46 -24 105 -50 142 -14 20 -25 40 -25 43 0 4 -18 27 -39 51 -65 74 -67 170 -6 247 101 126 131 211 113 323 -15 100 -75 176 -174 225 -40 20 -64 24 -134 24 -95 -1 -129 -15 -245 -104 -32 -24 -76 -48 -97 -53 -74 -16 -110 -2 -245 99 -132 98 -284 80 -437 -53 -81 -70 -182 -71 -260 -3 -24 22 -47 39 -51 39 -3 0 -21 11 -39 25 -65 49 -168 65 -258 40z"/>
</g>
</svg>
</div>
</a>
<!-- list menu -->
<div class="w-full md:w-auto justify-center flex flex-row md:flex-col items-center md:gap-4">
<a href="index.html" class="group active min-h-[56px] w-1/4 md:w-auto flex flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">widgets</span>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">Components</p>
</a>
<a href="colors.html" class="group min-h-[56px] w-1/4 md:w-auto flex flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">format_paint</span>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">Colors</p>
</a>
<a href="typography.html" class="group min-h-[56px] w-1/4 md:w-auto flex flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">format_size</span>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">Typography</p>
</a>
<a href="elevation.html" class="group min-h-[56px] w-1/4 md:w-auto flex flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">invert_colors</span>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">Elevation</p>
</a>
</div>
<div class="hidden md:flex flex-col items-center gap-3 mt-auto">
<div class="relative" aria-label="Download" data-microtip-position="top" role="tooltip">
<!-- download -->
<a href="https://github.com/aribudin/tailmater" target="_blank" class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">download</span>
</a>
</div>
<!-- light dark -->
<div class="relative" aria-label="Brightness" data-microtip-position="top" role="tooltip">
<!-- light & dark -->
<button data-type="theme" id="lightdark" class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined dark-hidden">light_mode</span>
<span class="material-symbols-outlined dark-block">dark_mode</span>
</button>
</div>
</div>
</div>
<!-- content -->
<div class="flex flex-col w-full gap-12 md:gap-2 overflow-hidden">
<div class="flex flex-wrap w-full flex-col gap-8 md:p-10 bg-surface-100 dark:bg-surfacedark-100 rounded-2xl">
<div class="flex flex-col gap-2">
<h2 class="text-xl leading-tight">Actions</h2>
<div class="bg-neutral-10 dark:bg-neutral-900 p-6 md:p-8 border border-gray-200 dark:border-gray-700 rounded-2xl">
<div class="flex flex-wrap gap-4 md:gap-12">
<div>
<p class="text-sm tracking-[0.1px] mb-3">Buttons</p>
<div class="flex flex-col gap-2">
<!-- btn elevated -->
<div class="py-4 flex-wrap rounded flex gap-2 items-center">
<button class="btn-elevated relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] shadow-lg text-sm tracking-[.00714em] font-medium bg-surface-100 hover:bg-surface-200 focus:bg-surface-400 text-primary-600 dark:bg-surfacedark-100 dark:hover:bg-surfacedark-200 dark:focus:bg-surfacedark-400 dark:text-primary-200">
Elevated
</button>
<button class="btn-elevated relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] shadow-lg text-sm tracking-[.00714em] font-medium bg-surface-100 hover:bg-surface-200 focus:bg-surface-400 text-primary-600 dark:bg-surfacedark-100 dark:hover:bg-surfacedark-200 dark:focus:bg-surfacedark-400 dark:text-primary-200">
<span class="material-symbols-outlined">add</span>
Icon
</button>
<button class="btn relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] hover:shadow-md text-sm tracking-[.00714em] font-medium" disabled="">
<span class="material-symbols-outlined">add</span>
Disabled
</button>
</div>
<!-- btn filled -->
<div class="py-4 flex-wrap rounded flex gap-2 items-center">
<button class="btn relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] hover:shadow-md text-sm tracking-[.00714em] font-medium bg-primary-600 text-white dark:bg-primary-200 dark:text-primary-800">
Filled
</button>
<button class="btn relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] hover:shadow-md text-sm tracking-[.00714em] font-medium bg-primary-600 text-white dark:bg-primary-200 dark:text-primary-800">
<span class="material-symbols-outlined">add</span>
Icon
</button>
<button class="btn relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] hover:shadow-md text-sm tracking-[.00714em] font-medium" disabled="">
<span class="material-symbols-outlined">add</span>
Disabled
</button>
</div>
<!-- btn tonal -->
<div class="py-4 flex-wrap rounded flex gap-2 items-center">
<button class="btn-tonal relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">
Tonal
</button>
<button class="btn-tonal relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">
<span class="material-symbols-outlined">add</span>
Icon
</button>
<button class="btn relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] hover:shadow-md text-sm tracking-[.00714em] font-medium" disabled="">
<span class="material-symbols-outlined">add</span>
Disabled
</button>
</div>
<!-- btn outlined -->
<div class="py-4 flex-wrap rounded flex gap-2 items-center">
<button class="btn-outline relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
Outlined
</button>
<button class="btn-outline relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
<span class="material-symbols-outlined">add</span>
Icon
</button>
<button class="btn-outline relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium border border-neutral-200 dark:border-neutral-400 dark:text-neutral-400" disabled="">
<span class="material-symbols-outlined">add</span>
Disabled
</button>
</div>
<!-- btn text -->
<div class="py-4 flex-wrap rounded flex gap-2 items-center">
<button class="relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium text-primary-600 hover:bg-surface-200 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-200 dark:focus:bg-surfacedark-400">
Text
</button>
<button class="relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium text-primary-600 hover:bg-surface-200 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-200 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">add</span>
Icon
</button>
<button class="relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium text-neutral-400" disabled="">
<span class="material-symbols-outlined">add</span>
Disabled
</button>
</div>
</div>
</div>
<div>
<p class="text-sm tracking-[0.1px] mb-3">Floating Action buttons (Fabs)</p>
<!-- fabs -->
<div class="py-4 flex-wrap rounded flex gap-2 items-center mb-6">
<!-- large -->
<button class="fabs relative flex flex-row items-center justify-center w-24 h-24 gap-x-2 p-2 rounded-[28px] overflow-hidden shadow-xl text-sm tracking-[.00714em] font-medium bg-primary-100 dark:bg-primary-700 dark:text-primary-100">
<span class="material-symbols-outlined !text-4xl">edit</span>
</button>
<!-- extended -->
<button class="fabs relative flex flex-row items-center justify-center h-14 gap-x-3 p-4 pr-8 rounded-2xl overflow-hidden shadow-lg text-sm tracking-[.00714em] font-medium bg-primary-100 dark:bg-primary-700 dark:text-primary-100">
<span class="material-symbols-outlined">edit</span>
Compose
</button>
<!-- medium -->
<button class="fabs relative flex flex-row items-center justify-center w-14 h-14 gap-x-2 p-2 rounded-2xl overflow-hidden shadow-lg text-sm tracking-[.00714em] font-medium bg-primary-100 dark:bg-primary-700 dark:text-primary-100">
<span class="material-symbols-outlined">edit</span>
</button>
<!-- small -->
<button class="fabs relative flex flex-row items-center justify-center w-10 h-10 gap-x-2 p-2 rounded-xl overflow-hidden shadow-lg text-sm tracking-[.00714em] font-medium bg-primary-100 dark:bg-primary-700 dark:text-primary-100">
<span class="material-symbols-outlined !text-lg">edit</span>
</button>
</div>
<p class="text-sm tracking-[0.1px] mb-3">Icon buttons</p>
<div class="py-4 flex-wrap rounded flex gap-2 items-center mb-6">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
settings
</button>
<button class="material-symbols-outlined btn relative !inline-flex !items-center items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] hover:shadow-md text-sm tracking-[.00714em] font-medium bg-primary-600 text-white dark:bg-primary-200 dark:text-primary-800">
settings
</button>
<button class="material-symbols-outlined btn-tonal relative !inline-flex !items-center items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">
settings
</button>
<button class="material-symbols-outlined btn-outline relative !inline-flex !items-center items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
settings
</button>
</div>
<p class="text-sm tracking-[0.1px] mb-6">Segmented Buttons (Checkbox & Radio)</p>
<div class="flex-wrap rounded flex flex-col gap-6">
<!-- btn segmented checkbox -->
<div class="btn-segmented inline-flex flex-row items-center">
<div class="segmented-item active [&.active]:bg-secondary-100 dark:[&.active]:bg-secondary-700 h-10 btn-outline relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
<input id="check1" type="checkbox" class="z-10 opacity-0 absolute inset-0" value="1" checked>
<label class="flex items-center gap-3" for="check1">
<span class="material-symbols-outlined check-icon">check</span>
Red
</label>
</div>
<div class="segmented-item [&.active]:bg-secondary-100 dark:[&.active]:bg-secondary-700 h-10 btn-outline relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
<input id="check2" type="checkbox" class="z-10 opacity-0 absolute inset-0" value="1">
<label class="flex items-center gap-3" for="check2">
<span class="material-symbols-outlined check-icon">check</span>
Green
</label>
</div>
<div class="segmented-item [&.active]:bg-secondary-100 dark:[&.active]:bg-secondary-700 h-10 btn-outline relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
<input id="check3" type="checkbox" class="z-10 opacity-0 absolute inset-0" value="1">
<label class="flex items-center gap-3" for="check3">
<span class="material-symbols-outlined check-icon">check</span>
Yellow
</label>
</div>
</div>
<!-- btn segmented radio -->
<div class="btn-segmented inline-flex flex-row items-center">
<div class="segmented-item active [&.active]:bg-secondary-100 dark:[&.active]:bg-secondary-700 h-10 btn-outline relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
<input id="check4" type="radio" name="radios" class="z-10 opacity-0 absolute inset-0" value="1" checked>
<label class="flex items-center gap-3" for="check1">
<span class="material-symbols-outlined check-icon">check</span>
Small
</label>
</div>
<div class="segmented-item [&.active]:bg-secondary-100 dark:[&.active]:bg-secondary-700 h-10 btn-outline relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
<input id="check5" type="radio" name="radios" class="z-10 opacity-0 absolute inset-0" value="2">
<label class="flex items-center gap-3" for="check2">
<span class="material-symbols-outlined check-icon">check</span>
Medium
</label>
</div>
<div class="segmented-item [&.active]:bg-secondary-100 dark:[&.active]:bg-secondary-700 h-10 btn-outline relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 text-sm tracking-[.00714em] font-medium border border-gray-500 text-primary-600 dark:border-gray-400 dark:text-primary-200">
<input id="check6" type="radio" name="radios" class="z-10 opacity-0 absolute inset-0" value="3">
<label class="flex items-center gap-3" for="check3">
<span class="material-symbols-outlined check-icon">check</span>
Big
</label>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-wrap w-full flex-col gap-8 md:p-10 bg-surface-100 dark:bg-surfacedark-100 rounded-2xl">
<div class="flex flex-col gap-2">
<h2 class="text-xl leading-tight">Communication</h2>
<div class="bg-neutral-10 dark:bg-neutral-900 p-6 md:p-8 border border-gray-200 dark:border-gray-700 rounded-2xl">
<div class="flex flex-col md:flex-row md:flex-wrap gap-4 md:gap-8">
<div>
<p class="text-sm tracking-[0.1px] mb-3">Badge</p>
<div class="flex pt-16 w-full overflow-hidden md:max-w-[412px] bg-white dark:bg-black rounded-2xl border border-gray-200 dark:border-gray-700 mb-6">
<!-- badge -->
<div class="w-full md:max-w-[412px] text-sm flex flex-row space-x-2 items-center justify-center">
<div class="flex flex-row justify-center gap-2 w-full md:w-[412px] bg-surface-200 dark:bg-surfacedark-200">
<a href="#" class="group flex w-1/3 flex-col items-center justify-center px-0 py-4 gap-1">
<div class="relative w-16 h-8 hover-icon active group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">mail</span>
<div class="absolute top-0 left-8 min-w-[22px] px-1 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">999+</div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 leading-tight tracking-[.0416em]">Mail</p>
</a>
<a href="#" class="group flex w-1/3 flex-col items-center justify-center px-0 pt-3 pb-4 gap-1">
<div class="relative w-16 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">chat_bubble</span>
<div class="absolute top-0 right-3 w-4 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">1</div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 leading-tight tracking-[.0416em]">Chat</p>
</a>
<a href="#" class="group flex w-1/3 flex-col items-center justify-center px-0 pt-3 pb-4 gap-1">
<div class="relative w-16 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">groups</span>
<div class="absolute top-1.5 right-5 w-1.5 h-1.5 rounded-full bg-error-600 dark:bg-error-200"></div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 leading-tight tracking-[.0416em]">Rooms</p>
</a>
</div>
</div>
</div>
</div>
<div>
<p class="text-sm tracking-[0.1px] mb-3">Progress Indicators</p>
<div class="w-full md:w-72 p-10 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<div class="relative flex flex-col gap-4 text-center mb-6">
<div class="relative">
<!-- linear loader -->
<div class="linear-loader relative overflow-hidden w-full h-1 flex bg-gray-100 dark:bg-gray-700">
<!-- slow -->
<div class="bar absolute inset-0 w-full bg-primary-600 dark:bg-primary-200"></div>
<!-- fast -->
<div class="bar absolute inset-0 w-full bg-primary-600 dark:bg-primary-200"></div>
</div>
</div>
</div>
<div class="relative flex flex-col items-center justify-center">
<!-- circular loader -->
<svg class="circular-loader relative w-[100px] h-[100px]">
<circle class="path stroke-primary-600 dark:stroke-primary-200" cx="50" cy="50" r="20" fill="none" stroke-width="5" stroke-miterlimit="10"></circle>
</svg>
</div>
</div>
</div>
<div>
<p class="text-sm tracking-[0.1px] mb-3">Snackbar</p>
<div class="w-full p-10 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<div class="text-center">
<button data-type="snackbar" data-target="#snackbar_a" class="btn-tonal relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">Show Snackbar</button>
</div>
<!-- snackbar -->
<div id="snackbar_a" class="[&.show]:opacity-100 [&.show]:bottom-24 md:[&.show]:bottom-4 fixed left-4 right-4 -bottom-full opacity-0 duration-[400ms] ease-[cubic-bezier(0, 0, 0, 1)] flex flex-row items-center sm:w-80 gap-4 py-3 px-4 shadow-md rounded text-neutral-50 dark:text-neutral-800 bg-neutral-800 dark:bg-neutral-100 z-50">
<p class="flex flex-grow text-sm tracking-[0.25px]">Single-line snackbar</p>
<button data-close="#snackbar_a" class="flex items-center">
<span class="material-symbols-outlined">close</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-wrap w-full flex-col gap-8 md:p-10 bg-surface-100 dark:bg-surfacedark-100 rounded-2xl">
<div class="flex flex-col gap-2">
<h2 class="text-xl leading-tight">Containment</h2>
<div class="bg-neutral-10 dark:bg-neutral-900 p-6 md:p-8 border border-gray-200 dark:border-gray-700 rounded-2xl">
<div class="w-full w-full md:flex flex-col md:flex-row md:flex-wrap gap-4 md:gap-8">
<div>
<p class="text-sm tracking-[0.1px] mb-3">Cards</p>
<div class="flex flex-col md:flex-row gap-6 mb-6">
<!-- outlined card -->
<div class="w-full md:w-32 md:w-36 h-36 rounded-xl bg-neutral-10 dark:bg-neutral-900 border border-gray-200 dark:border-gray-700 flex items-center justify-center">
<p>Outlined</p>
</div>
<!-- elevated card -->
<div class="w-full md:w-32 md:w-36 h-36 rounded-xl bg-surface-100 dark:bg-surfacedark-100 flex shadow-lg dark:shadow-gray-50/10 items-center justify-center">
<p>Elevated</p>
</div>
<!-- filled card -->
<div class="w-full md:w-32 md:w-36 h-36 rounded-xl bg-gray-100 dark:bg-gray-700 flex items-center justify-center">
<p>Filled</p>
</div>
</div>
</div>
<div>
<p class="text-sm tracking-[0.1px] mb-3">Divider</p>
<div class="relative w-full md:w-[280px] p-10 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<hr class="w-full border-gray-200 dark:border-gray-700">
<br>
<div class="flex justify-between items-center">
<hr class="w-full border-gray-200 dark:border-gray-700">
<div class="px-2">Center</div>
<hr class="w-full border-gray-200 dark:border-gray-700">
</div>
<div class="mt-6 flex flex-row items-center gap-4 mb-4">
<span class="material-symbols-outlined">format_align_left</span>
<span class="material-symbols-outlined">format_align_center</span>
<span class="material-symbols-outlined">format_align_right</span>
<hr class="self-stretch h-auto border-r border-solid border-gray-200 dark:border-gray-700">
<span class="material-symbols-outlined">format_bold</span>
<span class="material-symbols-outlined">format_italic</span>
</div>
</div>
</div>
<div>
<p class="text-sm tracking-[0.1px] mb-3 mt-3 md:mt-0">Lists</p>
<div class="w-full p-4 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<!-- Lists -->
<div class="w-full md:w-[360px] flex flex-col py-2 rounded-xl overflow-hidden bg-neutral-10 dark:bg-neutral-900">
<!-- lists & image -->
<div class="min-h-[3.5rem] flex flex-row items-center gap-4 py-2 pl-4 pr-6">
<div class="w-14 h-14 flex items-center justify-center title-md font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">
<img src="src/img/media2.png" alt="media 2" class="w-14 h-14">
</div>
<div class="flex flex-col flex-grow">
<p class="tracking-[.03125em]">List Item</p>
<span class="text-sm tracking-[0.25px]">Supporting line text</span>
</div>
<span class="text-[11px] leading-4 tracking-[.045em] font-medium">100+</span>
</div>
<!-- lists & image -->
<div class="min-h-[3.5rem] flex flex-row items-center gap-4 py-2 pl-4 pr-6">
<div class="w-14 h-14 flex items-center justify-center title-md font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">
<img src="src/img/media2.png" alt="media 2" class="w-14 h-14">
</div>
<div class="flex flex-col flex-grow">
<p class="tracking-[.03125em]">List Item</p>
<span class="text-sm tracking-[0.25px]">Supporting line text</span>
</div>
<span class="text-[11px] leading-4 tracking-[.045em] font-medium">100+</span>
</div>
</div>
<!-- Lists -->
<div class="w-full md:w-[360px] flex flex-col py-2 rounded-xl overflow-hidden bg-neutral-10 dark:bg-neutral-900">
<!-- list & avatar -->
<div class="min-h-[3.5rem] flex flex-row items-center gap-4 py-2 pl-4 pr-6">
<div class="w-10 h-10 flex items-center justify-center rounded-full title-md font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">
<img src="src/img/avatar.png" alt="avatar" class="w-10 h-10 rounded-full">
</div>
<p class="flex flex-grow">List Item</p>
<input type="checkbox" name="checked-demo" class="w-[18px] h-[18px] accent-primary-600 hover:accent-primary-600 dark:accent-primary-200 rounded-[2px] ltr:mr-3 rtl:ml-3" checked="">
</div>
<!-- list & initial -->
<div class="min-h-[3.5rem] flex flex-row items-center gap-4 py-2 pl-4 pr-6">
<div class="w-10 h-10 flex items-center justify-center rounded-full title-md font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">A</div>
<p class="flex flex-grow">List Item</p>
<input type="checkbox" name="checked-demo" class="w-[18px] h-[18px] accent-primary-600 hover:accent-primary-600 dark:accent-primary-200 rounded-[2px] ltr:mr-3 rtl:ml-3" checked="">
</div>
</div>
</div>
</div>
<div class="flex flex-col gap-4">
<div>
<p class="text-sm tracking-[0.1px] mb-3 mt-3 md:mt-0">Bottom Sheets</p>
<div class="w-full p-10 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<div class="text-center">
<button data-type="sheets" data-target="#sheets_a" class="btn-tonal relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">Show Bottom Sheets</button>
<!-- bottom sheets -->
<div id="sheets_a" class="group">
<!-- close sheets -->
<button data-close="#sheets_a" class="group-[&.show]:top-2 group-[&.show]:opacity-100 fixed z-50 opacity-0 -top-full left-4 btn-tonal flex flex-row items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">
<span class="material-symbols-outlined ml-auto icon-active">close</span>
</button>
<!-- bottom sheets content -->
<div class="group-[&.show]:translate-y-0 bottom-0 fixed left-0 right-0 z-50 transition-transform translate-y-full duration-[400ms] flex flex-col items-center w-full sm:w-5/6 md:w-2/3 gap-4 sm:mx-auto rounded-t-[28px] min-h-[40%] max-h-[60%] bg-surface-100 dark:bg-surfacedark-100 shadow-xl">
<div class="flex justify-center p-4 w-full h-9">
<div class="w-8 h-1 opacity-40 bg-gray-500 rounded-full"></div>
</div>
<div class="relative px-4 text-center">
<p>insert content bottom sheets</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div>
<p class="text-sm tracking-[0.1px] mb-3">Side Sheets</p>
<div class="w-full p-10 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<div class="text-center">
<button data-type="dialogs" data-target="#sheet_b" class="btn-tonal relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">Show Side Sheets</button>
<!-- side sheets dialog -->
<div id="sheet_b" class="group">
<!-- background sheets dialogs -->
<div data-close="#sheet_b" class="group-[&.show]:opacity-60 dark:group-[&.show]:opacity-60 group-[&.show]:inset-0 fixed z-40 opacity-0 -top-full bg-neutral-900"></div>
<!-- side sheets dialogs -->
<div class="group-[&.show]:translate-x-0 fixed top-0 bottom-0 right-0 rounded-l-2xl w-3/4 sm:w-[420px] z-50 bg-surface-100 dark:bg-surfacedark-100 transition-transform translate-x-full duration-[400ms] flex flex-col gap-2">
<!-- header -->
<div class="min-h-[56px] flex flex-row items-center gap-3 px-6 pt-6">
<h3 class="flex flex-grow text-base tracking-[.009375em]">Title Side Sheet</h3>
<button data-close="#sheet_b" class="flex items-center justify-center">
<span class="material-symbols-outlined">close</span>
</button>
</div>
<!-- body -->
<div class="relative text-left px-6 py-2 overflow-y-scroll scrollbars">
<p class="text-sm tracking-[.01785em] mb-4">Side sheets are surfaces containing supplementary content or actions to support tasks as part of a flow.Side sheets are surfaces containing supplementary content or actions to support tasks as part of a flow.</p>
<p class="text-sm tracking-[.01785em] mb-4">Side sheets are surfaces containing supplementary content or actions to support tasks as part of a flow.Side sheets are surfaces containing supplementary content or actions to support tasks as part of a flow.</p>
<p class="text-sm tracking-[.01785em] mb-4">Side sheets are surfaces containing supplementary content or actions to support tasks as part of a flow.Side sheets are surfaces containing supplementary content or actions to support tasks as part of a flow.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-col gap-4">
<div>
<p class="text-sm tracking-[0.1px] mb-3 mt-3 md:mt-0">Dialogs</p>
<div class="w-full p-10 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<div class="text-center">
<button data-type="dialogs" data-target="#dialog_a" class="btn-tonal relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">Show Dialogs</button>
<!-- default dialogs -->
<div id="dialog_a" class="[&.show]:opacity-100 [&.show]:h-full [&.show]:inset-0 duration-[400ms] ease-[cubic-bezier(0, 0, 0, 1)] opacity-0 w-full h-0 z-50 overflow-auto fixed left-0 top-0 flex items-center justify-center">
<div data-close="#dialog_a" class="backDialog hidden z-40 overflow-auto fixed bg-black opacity-50"></div>
<!-- dialogs -->
<div class="z-50 flex flex-col w-11/12 sm:w-[480px] h-auto bg-surface-300 dark:bg-surfacedark-300 rounded-[28px]">
<div class="flex flex-col gap-4 justify-start px-8 pt-8 pb-0">
<h3 class="text-2xl font-normal text-gray-900 dark:text-gray-100">Basic dialog title</h3>
<p class="text-sm tracking-[0.25px] leading-5">A dialog is a type of modal window that appears in front of app content to provide critical information, or prompt for a decision to be made.</p>
</div>
<div class="flex flex-row justify-end gap-2 px-8 py-8">
<button data-close="#dialog_a" class="relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium text-primary-600 hover:bg-surface-200 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-200 dark:focus:bg-surfacedark-400">
Cancel
</button>
<button class="btn relative flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] hover:shadow-md text-sm tracking-[.00714em] font-medium bg-primary-600 text-white dark:bg-primary-200 dark:text-primary-800">
Save
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div>
<p class="text-sm tracking-[0.1px] mb-3">Dialogs Fullscreen</p>
<div class="w-full p-10 bg-neutral-10 dark:bg-neutral-900 rounded-2xl border border-gray-200 dark:border-gray-700">
<div class="text-center">
<button data-type="dialogs" data-target="#dialog_b" class="btn-tonal relative inline-flex flex-row items-center justify-center gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium hover:shadow bg-secondary-100 text-primary-900 dark:bg-secondary-700 dark:text-secondary-100">Dialogs Fullscreen</button>
<!-- fullscreen dialogs -->
<div id="dialog_b" class="[&.show]:opacity-100 [&.show]:h-full [&.show]:inset-0 opacity-0 w-full h-0 z-50 overflow-auto fixed left-0 top-0 flex items-center justify-center">
<!-- dialogs -->
<div class="dialog hidden z-50 flex-col gap-2 fixed bg-neutral-10 dark:bg-neutral-900">
<!-- header -->
<div class="min-h-[56px] flex flex-row items-center gap-4 px-4 pt-6">
<button data-close="#dialog_b" class="relative flex flex-row items-center justify-center gap-x-2 p-2.5 rounded-[6.25rem] text-sm tracking-[.00714em] font-medium text-primary-600 hover:bg-surface-200 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-200 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">close</span>
</button>
<h3 class="flex flex-grow text-[1.375rem] leading-7">Full-screen Dialogs</h3>
</div>
<!-- body -->
<div class="relative px-8 py-4 overflow-y-scroll scrollbars">
<p class="mb-4">Insert content in here.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-wrap w-full flex-col gap-8 md:p-10 bg-surface-100 dark:bg-surfacedark-100 rounded-2xl">
<div class="flex flex-col gap-2">
<h2 class="text-xl leading-tight">Navigation</h2>
<div class="bg-neutral-10 dark:bg-neutral-900 p-6 md:p-8 border border-gray-200 dark:border-gray-700 rounded-2xl">
<div class="flex flex-col md:flex-wrap md:flex-row gap-4 md:gap-8">
<div class="flex flex-col mb-6">
<p class="text-sm tracking-[0.1px] mb-3">Bottom App Bar</p>
<div class="flex flex-wrap flex-row gap-8 pt-10 overflow-hidden bg-white dark:bg-black rounded-2xl border border-gray-200 dark:border-gray-700">
<!-- bottom app bar -->
<div class="w-full md:max-w-[412px] text-sm flex flex-row space-x-2 items-center justify-center">
<div class="flex flex-row justify-between items-center py-3 pl-1 pr-4 gap-2 w-full md:w-[412px] bg-surface-200 dark:bg-surfacedark-200">
<div class="flex flex-row gap-2 items-center">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">archive</button>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">label</button>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">delete</button>
</div>
<button class="flex justify-center items-center w-14 h-14 rounded-2xl bg-secondary-100 dark:bg-secondary-700 hover:shadow-md">
<span class="material-symbols-outlined">add</span>
</button>
</div>
</div>
</div>
</div>
<div class="flex flex-col mb-6">
<p class="text-sm tracking-[0.1px] mb-3">Navigation Bar</p>
<div class="w-full flex pt-10 overflow-hidden md:max-w-[412px] bg-white dark:bg-black rounded-2xl border border-gray-200 dark:border-gray-700">
<div class="w-full md:max-w-[412px] text-sm flex flex-row space-x-2 items-center justify-center">
<div class="flex flex-row justify-center gap-2 w-full md:w-[412px] bg-surface-200 dark:bg-surfacedark-200">
<a href="#" class="group flex w-1/4 md:w-32 flex-col items-center justify-center px-0 py-4 gap-1">
<div class="relative w-16 h-8 hover-icon active group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">mail</span>
<div class="absolute top-0 left-8 min-w-[22px] px-1 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">999+</div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 leading-tight tracking-[.0416em]">Mail</p>
</a>
<a href="#" class="group flex w-1/4 md:w-32 flex-col items-center justify-center px-0 pt-3 pb-4 gap-1">
<div class="relative w-16 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">chat_bubble</span>
<div class="absolute top-0 right-3 w-4 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">1</div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 leading-tight tracking-[.0416em]">Chat</p>
</a>
<a href="#" class="group flex w-1/4 md:w-32 flex-col items-center justify-center px-0 pt-3 pb-4 gap-1">
<div class="relative w-16 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">groups</span>
<div class="absolute top-1.5 right-5 w-1.5 h-1.5 rounded-full bg-error-600 dark:bg-error-200"></div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 leading-tight tracking-[.0416em]">Rooms</p>
</a>
<a href="#" class="group flex w-1/4 md:w-32 flex-col items-center justify-center px-0 pt-3 pb-4 gap-1">
<div class="relative w-16 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">star</span>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 leading-tight tracking-[.0416em]">For You</p>
</a>
</div>
</div>
</div>
</div>
<div class="flex flex-col md:flex-wrap md:flex-row gap-10 mb-6">
<div class="flex flex-col">
<p class="text-sm tracking-[0.1px] mb-3">Navigation Drawer</p>
<!-- Navigation Drawer -->
<div class="relative">
<div class="w-full md:w-[360px] inline-flex flex-col p-3 rounded-2xl bg-surface-100 dark:bg-surfacedark-100">
<!-- section header -->
<div class="py-[18px] px-4 rounded-full">
<p class="text-sm tracking-[.00714em] font-medium">Mail</p>
</div>
<ul class="flex flex-col">
<li class="relative">
<a href="#" class="active flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">inbox</span>
Inbox
<span class="flex flex-grow justify-end text-sm tracking-[.00714em]">12</span>
</a>
</li>
<li class="relative">
<a href="#" class="flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">outgoing_mail</span>
Sent
</a>
</li>
<li class="relative">
<a href="#" class="flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">favorite</span>
Favorite
</a>
</li>
<li class="relative">
<a href="#" class="flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">delete</span>
Trash
</a>
</li>
</ul>
<hr class="mx-4 border-gray-200 dark:border-gray-700">
<!-- section header -->
<div class="py-[18px] px-4 rounded-full">
<p class="text-sm tracking-[.00714em] font-medium">Labels</p>
</div>
<ul class="flex flex-col">
<li class="relative">
<a href="#" class="flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">work</span>
Work
</a>
</li>
<li class="relative">
<a href="#" class="flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">diversity_2</span>
Family
</a>
</li>
<li class="relative">
<a href="#" class="flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">group</span>
Friends
</a>
</li>
<li class="relative">
<a href="#" class="flex flex-row items-center gap-3 py-4 pl-4 pr-6 rounded-full hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<span class="material-symbols-outlined">star</span>
Clients
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="flex flex-col">
<p class="text-sm tracking-[0.1px] mb-3">Navigation Rail</p>
<!-- Navigation Rail -->
<div class="relative">
<div class="w-20 h-[585px] bg-surface-100 dark:bg-surfacedark-100 flex items-center flex-col gap-8 py-10">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">menu</button>
<button class="fabs relative flex flex-row items-center justify-center w-14 h-14 gap-x-2 p-2 rounded-2xl overflow-hidden shadow-lg text-sm tracking-[.00714em] font-medium bg-primary-100 dark:bg-primary-700 dark:text-primary-100">
<span class="material-symbols-outlined">edit</span>
</button>
<div class="flex flex-col items-center gap-3">
<a href="#" class="group active min-h-[56px] flex flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">inbox</span>
<div class="absolute top-0 left-8 min-w-[22px] px-1 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">12</div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">Inbox</p>
</a>
<a href="#" class="group min-h-[56px] flex flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">chat_bubble</span>
<div class="absolute top-0 right-3 w-4 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">1</div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">Chat</p>
</a>
<a href="#" class="group min-h-[56px] flex flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">groups</span>
<div class="absolute top-1.5 right-5 w-1.5 h-1.5 rounded-full bg-error-600 dark:bg-error-200"></div>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">Rooms</p>
</a>
<a href="#" class="group min-h-[56px] flex w-32 flex-col items-center justify-center px-0 gap-1">
<div class="relative w-14 h-8 hover-icon group-hover:bg-secondary-100 dark:group-hover:bg-secondary-700 group-hover:bg-opacity-80 dark:group-hover:bg-opacity-80 flex items-center justify-center rounded-2xl">
<span class="material-symbols-outlined">star</span>
</div>
<p class="text-xs text-neutral-900 dark:text-neutral-100 tracking-[.0416em] leading-tight">For You</p>
</a>
</div>
</div>
</div>
</div>
<div class="flex flex-col">
<p class="text-sm tracking-[0.1px] mb-3">Search</p>
<div class="flex flex-col gap-4 mb-12">
<!-- search -->
<div class="flex flex-row items-center justify-between w-full h-14 rounded-full bg-surface-100 dark:bg-surfacedark-100 p-2">
<div class="flex flex-row items-center flex-grow">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
menu
</button>
<input type="search" placeholder="Search..." class="w-full bg-transparent py-2 px-4 ring-0 focus:outline-none">
</div>
<div class="w-10 h-10 flex items-center justify-center rounded-full text-base tracking-[0.15px] font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">
<img src="src/img/avatar.png" class="w-10 h-10 rounded-full">
</div>
</div>
<!-- search -->
<div class="flex flex-row items-center justify-between w-full h-14 rounded-full bg-surface-100 dark:bg-surfacedark-100 p-2">
<div class="flex flex-row items-center flex-grow">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
menu
</button>
<input type="search" placeholder="Search..." class="w-full bg-transparent py-2 px-4 ring-0 focus:outline-none">
</div>
<div class="w-10 h-10 flex items-center justify-center rounded-full text-base tracking-[0.15px] font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">A</div>
</div>
<!-- search -->
<div class="flex flex-row items-center justify-between w-full h-14 rounded-full bg-surface-100 dark:bg-surfacedark-100 p-2">
<div class="flex flex-row items-center flex-grow">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
menu
</button>
<input type="search" placeholder="Search..." class="w-full bg-transparent py-2 px-4 ring-0 focus:outline-none">
<button type="submit" class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
search
</button>
</div>
</div>
<!-- search -->
<div class="flex flex-row items-center justify-between w-full h-14 rounded-full bg-surface-100 dark:bg-surfacedark-100 p-2">
<div class="flex flex-row items-center flex-grow">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined !text-2xl">search</span>
</button>
<input type="search" placeholder="Search..." class="w-full bg-transparent py-2 px-4 ring-0 focus:outline-none">
<button type="submit" class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
keyboard_voice
</button>
</div>
</div>
<!-- search modal -->
<div class="flex flex-col bg-surface-200 dark:bg-surfacedark-200 rounded-[28px]">
<div class="min-h-[56px] flex flex-row items-center gap-2 px-2">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
arrow_back
</button>
<input type="search" placeholder="Search..." class="w-full bg-transparent py-2 pr-4 ring-0 focus:outline-none">
</div>
<hr class="border-gray-200 dark:border-gray-700">
<!-- lists -->
<div class="flex flex-col">
<a href="#" class="min-h-[72px] flex flex-row items-center gap-4 py-2 pl-4 pr-6 hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<div class="w-10 h-10 flex items-center justify-center rounded-full text-base tracking-[0.15px] font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">A</div>
<div class="flex flex-col flex-grow">
<p class="tracking-[.03125em]">List Item</p>
<span class="text-sm tracking-[0.25px]">Supporting line text</span>
</div>
</a>
<a href="#" class="min-h-[72px] flex flex-row items-center gap-4 py-2 pl-4 pr-6 hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<div class="w-10 h-10 flex items-center justify-center rounded-full text-base tracking-[0.15px] font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">A</div>
<div class="flex flex-col flex-grow">
<p class="tracking-[.03125em]">List Item</p>
<span class="text-sm tracking-[0.25px]">Supporting line text</span>
</div>
</a>
<a href="#" class="min-h-[72px] flex flex-row items-center gap-4 py-2 pl-4 pr-6 hover-icon hover:bg-secondary-100 dark:hover:bg-secondary-700 hover:bg-opacity-30 dark:hover:bg-opacity-30">
<div class="w-10 h-10 flex items-center justify-center rounded-full text-base tracking-[0.15px] font-bold bg-primary-600 text-white dark:bg-primary-200 dark:text-neutral-900">A</div>
<div class="flex flex-col flex-grow">
<p class="tracking-[.03125em]">List Item</p>
<span class="text-sm tracking-[0.25px]">Supporting line text</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-col md:flex-wrap md:flex-row gap-10">
<div class="flex flex-col mb-6">
<p class="text-sm tracking-[0.1px] mb-3">Top App Bar</p>
<div class="flex flex-col gap-4">
<!-- top app bar -->
<div class="w-full md:w-[360px] h-16 flex flex-row items-center justify-between gap-1.5 bg-surface-100 dark:bg-surfacedark-100">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
menu
</button>
<h2 class="flex flex-grow justify-start text-[1.375rem] leading-7">LOGO</h2>
<div class="flex flex-row justify-end items-center">
<button class="relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">mail</span>
<!-- new -->
<div class="absolute top-2 right-2 w-4 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">1</div>
</button>
<button class="relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">notifications</span>
<!-- new -->
<div class="absolute top-2 right-2 w-4 h-4 flex items-center justify-center rounded-full text-[11px] leading-none tracking-[.045em] font-medium bg-error-600 dark:bg-error-200 text-white dark:text-error-800">5</div>
</button>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
person
</button>
</div>
</div>
<!-- top app bar -->
<div class="w-full md:w-[360px] h-16 flex flex-row items-center justify-between gap-1.5 bg-surface-100 dark:bg-surfacedark-100">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
menu
</button>
<h2 class="text-[1.375rem] leading-7">Product</h2>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
person
</button>
</div>
<!-- top app bar -->
<div class="w-full md:w-[360px] h-16 flex flex-row items-center justify-between gap-1.5 bg-surface-100 dark:bg-surfacedark-100">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
arrow_back
</button>
<h2 class="flex flex-grow justify-start text-[1.375rem] leading-7">Product</h2>
<div class="flex flex-row justify-end items-center">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
attach_file
</button>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
event
</button>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
more_vert
</button>
</div>
</div>
<!-- small headline -->
<div class="w-full md:w-[360px] flex flex-col gap-1 bg-surface-100 dark:bg-surfacedark-100">
<!-- top app bar -->
<div class="w-full h-16 flex flex-row items-center justify-between gap-1.5">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">arrow_back</span>
</button>
<div class="flex flex-row justify-end items-center">
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">attach_file</span>
</button>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">event</span>
</button>
<button class="material-symbols-outlined relative !inline-flex !items-center justify-center w-12 h-12 gap-x-2 py-2.5 px-6 rounded-[6.25rem] text-sm tracking-[.00714em] text-center font-medium hover:bg-surface-300 focus:bg-surface-400 dark:text-primary-200 dark:hover:bg-surfacedark-300 dark:focus:bg-surfacedark-400">
<span class="material-symbols-outlined">more_vert</span>
</button>
</div>
</div>
<h1 class="text-2xl px-4 mb-4">Headline</h1>
</div>
</div>
</div>
<div class="flex flex-col mb-6">
<p class="text-sm tracking-[0.1px] mb-3">Tabs</p>
<div class="flex flex-col gap-4">
<!-- tabs -->
<div class="tabs flex flex-col w-full md:w-[360px]">
<!-- tabs header -->
<div class="relative flex flex-row items-center">
<button data-type="tabs" data-target="#tab-1" class="active w-1/3 md:w-[120px] h-16 px-4 py-2 flex flex-col justify-end items-center gap-1 hover:bg-surface-100 dark:hover:bg-surfacedark-100">
<span class="material-symbols-outlined">music_note</span>
<p class="text-sm tracking-[.00714em]">Music</p>
</button>
<button data-type="tabs" data-target="#tab-2" class="w-1/3 md:w-[120px] h-16 px-4 py-2 flex flex-col justify-end items-center gap-1 hover:bg-surface-100 dark:hover:bg-surfacedark-100">
<span class="material-symbols-outlined">image</span>
<p class="text-sm tracking-[.00714em]">Photos</p>
</button>
<button data-type="tabs" data-target="#tab-3" class="w-1/3 md:w-[120px] h-16 px-4 py-2 flex flex-col justify-end items-center gap-1 hover:bg-surface-100 dark:hover:bg-surfacedark-100">