-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1918 lines (1636 loc) · 55.3 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">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PoshUI Components</title>
<!-- font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- custom css -->
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div class="container m-auto">
<h1>PoshUI Components</h1>
<!-- Alert Component Starts -->
<section class="section-component">
<h2 class="section-head">Danger Alert</h2>
<div class="alert alert-danger-solid">Hey!👋 I'm a Danger Alert</div>
<div class="alert alert-danger-outline">Hey!👋 I'm a Danger Alert</div>
</section>
<section class="section-component">
<h2 class="section-head">Info Alert</h2>
<div class="alert alert-info-solid">Hey!👋 I'm a Info Alert</div>
<div class="alert alert-info-outline">Hey!👋 I'm a Info Alert</div>
</section>
<section class="section-component">
<h2 class="section-head">Primary Alert</h2>
<div class="alert alert-primary-solid">Hey!👋 I'm a Primary Alert</div>
<div class="alert alert-primary-outline">
Hey!👋 I'm a Primary Alert
</div>
</section>
<section class="section-component">
<h2 class="section-head">Secondary Alert</h2>
<div class="alert alert-secondary-solid">
Hey!👋 I'm a Secondary Alert
</div>
<div class="alert alert-secondary-outline">
Hey!👋 I'm a Secondary Alert
</div>
</section>
<section class="section-component">
<h2 class="section-head">Success Alert</h2>
<div class="alert alert-success-solid">Hey!👋 I'm a Success Alert</div>
<div class="alert alert-success-outline">
Hey!👋 I'm a Success Alert
</div>
</section>
<section class="section-component">
<h2 class="section-head">Warning Alert</h2>
<div class="alert alert-warning-solid">Hey!👋 I'm a Warning Alert</div>
<div class="alert alert-warning-outline">
Hey!👋 I'm a Warning Alert
</div>
</section>
<!-- Alert Component Ends -->
<!-- Avatar Component Starts -->
<section class="section-component">
<h2 class="section-head">Avatars</h2>
<img
loading="lazy"
class="avatar"
src="assets/svgs/female-avatar.svg"
alt="undraw female avatar svg"
/>
<img
loading="lazy"
class="avatar"
src="assets/jpegs/spider-man.jpg"
alt="spider man jpg"
/>
<img
loading="lazy"
class="avatar"
src="assets/jpegs/black-panther.jpg"
alt="black panther jpg"
/>
<img
loading="lazy"
class="avatar"
src="assets/jpegs/iron-man.jpg"
alt="iron man jpg"
/>
<img
loading="lazy"
class="avatar"
src="assets/svgs/male-avatar.svg"
alt="undraw male avatar svg"
/>
</section>
<section>
<h2 class="section-head">Different Sized Avatars</h2>
<img
loading="lazy"
class="avatar avatar-xs"
src="assets/svgs/female-avatar.svg"
alt="undraw female avatar svg"
/>
<img
loading="lazy"
class="avatar avatar-sm"
src="assets/jpegs/spider-man.jpg"
alt="spider man jpg"
/>
<img
loading="lazy"
class="avatar"
src="assets/jpegs/black-panther.jpg"
alt="black panther jpg"
/>
<img
loading="lazy"
class="avatar avatar-md"
src="assets/jpegs/iron-man.jpg"
alt="iron man jpg"
/>
<img
loading="lazy"
class="avatar avatar-lg"
src="assets/svgs/male-avatar.svg"
alt="undraw male avatar svg"
/>
</section>
<!-- Avatar Component Ends -->
<!-- Badge Component Start -->
<section class="section-component">
<h2 class="section-head">Badge on Icons</h2>
<button class="badge-btn mx-1">
<i class="fas fa-home"></i>
<span class="badge-count bg-amber-500">9</span>
</button>
<button class="badge-btn mx-1">
<i class="fas fa-shopping-cart"></i>
<span class="badge-count bg-lime-500">9+</span>
</button>
<button class="badge-btn mx-1">
<i class="fas fa-bell"></i>
<span class="badge-count bg-red-500"> 99+ </span>
</button>
</section>
<section class="section-component">
<h2 class="section-head">Badge on Avatars</h2>
<div class="badge">
<img
loading="lazy"
class="avatar"
src="assets/svgs/female-avatar.svg"
alt="undraw female avatar svg"
/>
<span class="badge-status bg-lime-500"></span>
</div>
<div class="badge">
<img
loading="lazy"
class="avatar"
src="assets/jpegs/spider-man.jpg"
alt="spider man jpg"
/>
<span class="badge-status bg-red-500"></span>
</div>
<div class="badge">
<img
loading="lazy"
class="avatar"
src="assets/svgs/male-avatar.svg"
alt="undraw male avatar svg"
/>
<span class="badge-status bg-slate-400"></span>
</div>
</section>
<!-- Badge Component Ends -->
<!-- Button Component Starts -->
<section class="section-component">
<h2 class="section-head">Filled Primary Buttons</h2>
<button class="btn">Default</button>
<button class="btn btn-error-solid">Error</button>
<button class="btn btn-primary-solid">Primary</button>
<button class="btn btn-secondary-solid">Secondary</button>
<button class="btn btn-success-solid">Success</button>
</section>
<section class="section-component">
<h2 class="section-head">Outlined Primary Buttons</h2>
<button class="btn btn-error-outline">Error</button>
<button class="btn btn-primary-outline">Primary</button>
<button class="btn btn-secondary-outline">Secondary</button>
<button class="btn btn-success-outline">Success</button>
</section>
<section class="section-component">
<h2 class="section-head">Link Button</h2>
<a href="#">
<button class="btn btn-primary-solid btn-rounded">Link</button>
</a>
<a href="#">
<button class="btn btn-primary-outline btn-rounded">Link</button></a
>
</section>
<section class="section-component">
<h2 class="section-head">Icon Button</h2>
<button class="btn btn-error-solid btn-squared">
<i class="fas fa-door-open"></i> Log In
</button>
<button class="btn btn-error-outline btn-squared">
<i class="fas fa-door-open"></i> Log In
</button>
</section>
<section class="section-component">
<h2 class="section-head">Floating Button</h2>
<a href="#">
<button class="btn-floating"><i class="fas fa-arrow-up"></i></button
></a>
</section>
<!-- Button Component Ends -->
<!-- Card Component Starts -->
<!-- Horizontal Text Card Starts -->
<section class="section-component">
<h2 class="section-head">Horizontal Text Card</h2>
<div class="card card-horizontal">
<img
loading="lazy"
class="card-horizontal-img"
src="assets/jpegs/captain-america.jpg"
alt="captain america jpg"
/>
<div>
<h1 class="card-head">Captain America</h1>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
</p>
<div class="card-horizontal-footer">
<button class="card-icon-btn">
<i class="far fa-comment m-auto"></i>
</button>
<button class="card-icon-btn">
<i class="far fa-heart m-auto"></i>
</button>
<button class="card-icon-btn">
<i class="far fa-share-square m-auto"></i>
</button>
</div>
</div>
</div>
</section>
<!-- Horizontal Text Card Ends -->
<!-- Vertical Item Card Starts -->
<section class="section-component">
<h2 class="section-head">Vertical Item Card</h2>
<div class="card card-vertical">
<div class="card-vertical-header">
<span class="status-badge text-center w-6p5">
4+ <i class="fas fa-star"></i>
</span>
<button class="card-icon-btn ml-auto">
<i class="far fa-heart m-auto"></i>
</button>
</div>
<img
loading="lazy"
class="card-vertical-img"
src="assets/jpegs/hulk-bobblehead.jpg"
alt="hulk bobblehead jpg"
/>
<h1 class="card-head">Hulk Bobblehead</h1>
<p class="card-text">
Elegant Lifestyle Super Hero Incredible Hulk Action Figure Limited
Edition, Marvel Comics Character
</p>
<div class="card-vertical-footer">
<span class="current-price"><strong>₹416</strong></span>
<span class="earlier-price">₹1,780</span>
<span class="pct-off">76% off</span>
</div>
</div>
</section>
<!-- Vertical Item Card Ends -->
<!-- Text Overlay Card Starts -->
<section class="section-component">
<h2 class="section-head">Text Overlay Card</h2>
<p class="section-text">You can hover to see overlay transition</p>
<div class="card card-text-overlay card-vertical">
<img
loading="lazy"
class="card-vertical-img"
src="assets/jpegs/eternals.jpg"
alt="eternals final trailer jpg"
/>
<span class="card-vertical-img overlay-content"
><i class="fas fa-play overlay-play-icon"></i> Play</span
>
<div class="card-text-overlay-row">
<img
loading="lazy"
class="card-horizontal-img"
src="assets/jpegs/marvel.jpg"
alt="marvel entertainment jpg"
/>
<div>
<h1 class="card-head">
Marvel Studios' Eternals | Final Trailer
</h1>
<p class="card-text">Marvel Entertainment</p>
</div>
</div>
</div>
</section>
<!-- Text Overlay Card Ends -->
<!-- Dismiss Card with Shadow Starts -->
<section class="section-component">
<h2 class="section-head">Dismiss Card with Shadow</h2>
<div class="card card-dismiss">
<button class="card-icon-btn ml-auto">
<i class="fas fa-times m-auto"></i>
</button>
<h1 class="card-head">Marvel Heading</h1>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
</div>
</section>
<!-- Dismiss Card with Shadow Ends -->
<!-- Card Component Ends -->
<!-- Image Component Starts -->
<section class="section-component">
<h2 class="section-head">Round Image</h2>
<img
loading="lazy"
class="img img-round mx-1"
src="assets/jpegs/do-something-great.jpg"
alt="unsplash do something great jpg"
/>
<img
loading="lazy"
class="img img-round mx-1"
src="assets/jpegs/stanlee.jpg"
alt="unsplash stanlee jpg"
/>
</section>
<section class="section-component">
<h2 class="section-head">Square Image</h2>
<img
loading="lazy"
class="img img-square mx-1"
src="assets/jpegs/stanlee.jpg"
alt="unsplash stanlee jpg"
/>
<img
loading="lazy"
class="img img-square mx-1"
src="assets/jpegs/do-something-great.jpg"
alt="unsplash do something great jpg"
/>
</section>
<section class="section-component">
<h2 class="section-head">Responsive Image</h2>
<p class="section-text">
Resize your browser window, to see its responsiveness.
</p>
<div class="img-container">
<img
loading="lazy"
class="img-responsive"
src="assets/jpegs/stanlee.jpg"
alt="unsplash stanlee jpg"
/>
</div>
</section>
<!-- Image Component Ends -->
<!-- Input Component Starts -->
<section class="section-component">
<h2 class="section-head">Text area</h2>
<div class="textarea-container">
<textarea
class="textarea"
placeholder="Enter Your Message"
></textarea>
<button class="btn btn-primary-solid btn-squared textarea-btn">
<i class="fas fa-paper-plane"></i> Send
</button>
</div>
</section>
<section class="section-component">
<h2 class="section-head">Form Input</h2>
<form class="form">
<input
class="input"
type="email"
name="email-id"
placeholder="Enter Your Email"
/>
<input
class="input"
type="password"
name="password"
placeholder="Enter Your Password"
/>
<button class="btn btn-error-solid btn-squared">
<i class="fas fa-door-open"></i> Log In
</button>
</form>
</section>
<section class="section-component">
<h2 class="section-head">Error Form Input</h2>
<form class="form">
<span class="msg-error">Enter correct Email and Password</span>
<input
class="input input-error"
type="email"
name="email-id"
placeholder="Enter Your Email"
/>
<input
class="input input-error"
type="password"
name="password"
placeholder="Enter Your Password"
/>
<button class="btn btn-error-solid btn-squared">
<i class="fas fa-door-open"></i> Log In
</button>
</form>
</section>
<!-- Input Component Ends -->
<!-- Grid Component Starts -->
<section class="section-component">
<h2 class="section-head">Two Columns Grid</h2>
<div class="bg-lime-200 border-r-0p2 grid grid-cols-2 p-1">
<div class="bg-lime-500 border-r-0p2 fw-bold mx-0p5 p-1">
Grid Item One
</div>
<div class="bg-lime-500 border-r-0p2 fw-bold mx-0p5 p-1">
Grid Item Two
</div>
</div>
</section>
<section class="section-component">
<h2 class="section-head">Two Rows Grid</h2>
<div class="bg-lime-200 border-r-0p2 grid grid-rows-2 p-1">
<div class="bg-lime-500 border-r-0p2 fw-bold my-0p5 p-1">
Grid Item One
</div>
<div class="bg-lime-500 border-r-0p2 fw-bold my-0p5 p-1">
Grid Item Two
</div>
</div>
</section>
<section class="section-component">
<h2 class="section-head">Three Columns Grid</h2>
<div class="bg-lime-200 border-r-0p2 grid grid-cols-3 p-1">
<div class="bg-lime-500 border-r-0p2 fw-bold mx-0p5 p-1">
Grid Item One
</div>
<div class="bg-lime-500 border-r-0p2 fw-bold mx-0p5 p-1">
Grid Item Two
</div>
<div class="bg-lime-500 border-r-0p2 fw-bold mx-0p5 p-1">
Grid Item Three
</div>
</div>
</section>
<section class="section-component">
<h2 class="section-head">Three Rows Grid</h2>
<div class="bg-lime-200 border-r-0p2 grid grid-rows-3 p-1">
<div class="bg-lime-500 border-r-0p2 fw-bold my-0p5 p-1">
Grid Item One
</div>
<div class="bg-lime-500 border-r-0p2 fw-bold my-0p5 p-1">
Grid Item Two
</div>
<div class="bg-lime-500 border-r-0p2 fw-bold my-0p5 p-1">
Grid Item Three
</div>
</div>
</section>
<!-- Grid Component Ends -->
<!-- Lists Component Starts -->
<!-- Ordered List Starts -->
<section class="section-component">
<h2 class="section-head">Ordered List</h2>
<ol class="my-1">
<li>List Item One</li>
<li>List Item Two</li>
<li>List Item Three</li>
</ol>
<ol reversed class="my-1">
<li>List Item One</li>
<li>List Item Two</li>
<li>List Item Three</li>
</ol>
<ol class="list-lower-roman my-1">
<li>List Item One</li>
<li>List Item Two</li>
<li>List Item Three</li>
</ol>
<ol class="list-lower-alpha my-1">
<li>List Item One</li>
<li>List Item Two</li>
<li>List Item Three</li>
</ol>
</section>
<!-- Ordered List Ends -->
<!-- Unordered List Starts -->
<section class="section-component">
<h2 class="section-head">Unordered List</h2>
<ul class="list-disc my-1">
<li>List Item One</li>
<li>List Item Two</li>
<li>List Item Three</li>
</ul>
<ul class="list-circle my-1">
<li>List Item One</li>
<li>List Item Two</li>
<li>List Item Three</li>
</ul>
<ul class="list-square my-1">
<li>List Item One</li>
<li>List Item Two</li>
<li>List Item Three</li>
</ul>
</section>
<!-- Unordered List Ends -->
<!-- Category Checkbox List Starts -->
<section class="section-component">
<h2 class="section-head">Category Checkbox List</h2>
<ul>
<li class="my-0p5 ml-1">
<label class="cursor-ptr" for="bobbleheads">
<input
class="cursor-ptr mr-1"
type="checkbox"
name="category"
id="bobbleheads"
/>
Bobblehead's</label
>
</li>
<li class="my-0p5 ml-1">
<label class="cursor-ptr" for="mens-clothing">
<input
class="cursor-ptr mr-1"
type="checkbox"
name="category"
id="mens-clothing"
/>
Men's Clothing</label
>
</li>
<li class="my-0p5 ml-1">
<label class="cursor-ptr" for="kids-clothing">
<input
class="cursor-ptr mr-1"
type="checkbox"
name="category"
id="kids-clothing"
/>
Kid's Clothing</label
>
</li>
</ul>
</section>
<!-- Category Checkbox List Ends -->
<!-- Price Radio List Starts -->
<section class="section-component">
<h2 class="section-head">Price Radio List</h2>
<ul>
<li class="my-0p5 ml-1">
<label class="cursor-ptr" for="low-to-high">
<input
class="cursor-ptr mr-1"
type="radio"
name="price"
id="low-to-high"
/>
Price - Low to High</label
>
</li>
<li class="my-0p5 ml-1">
<label class="cursor-ptr" for="high-to-low">
<input
class="cursor-ptr mr-1"
type="radio"
name="price"
id="high-to-low"
/>
Price - High to Low</label
>
</li>
</ul>
</section>
<!-- Price Radio List Ends -->
<!-- Notification Stacked List Starts -->
<section class="section-component">
<h2 class="section-head">Notification Stacked List</h2>
<ul class="stacked-list">
<li class="shadow-light">
<a href="#"
>New Notification 1
<span class="translate-y"><i class="fas fa-times"></i></span
></a>
</li>
<li class="shadow-light">
<a href="#"
>New Notification 2
<span class="translate-y"><i class="fas fa-times"></i></span
></a>
</li>
<li class="shadow-light">
<a class="viewed" href="#"
>Viewed Notification
<span class="translate-y"><i class="fas fa-check"></i></span
></a>
</li>
<li class="shadow-light">
<a class="viewed" href="#"
>Viewed Notification
<span class="translate-y"><i class="fas fa-check"></i></span
></a>
</li>
</ul>
</section>
<!-- Notification Stacked List Ends -->
<!-- Lists Component Ends -->
<!-- Modal Component Starts -->
<section class="section-component">
<h2 class="section-head">Modal</h2>
<div class="modal">
<div class="modal-head">Modal Head</div>
<p class="modal-body">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</p>
<div class="modal-foot">
<button class="btn btn-primary-outline">Close</button>
<button class="btn btn-primary-solid">Save Changes</button>
</div>
</div>
</section>
<section class="section-component">
<h2 class="section-head">Modal Demo</h2>
<button id="modal-demo-btn" class="btn btn-primary-solid btn-squared">
Modal Demo
</button>
<div id="modal-container" class="d-none modal-container">
<div class="mx-auto modal">
<div class="modal-head">Modal Head</div>
<p class="modal-body">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
</p>
<div class="modal-foot">
<button id="modal-close-btn" class="btn btn-primary-outline">
Close
</button>
<button class="btn btn-primary-solid">Save Changes</button>
</div>
</div>
</div>
</section>
<!-- Modal Component Ends -->
<!-- Navigation Component Starts -->
<section class="section-component">
<h2 class="section-head">Desktop Variation One</h2>
<div class="navbar-container">
<nav class="navbar-align px-2 py-1">
<div class="navbar-align">
<img
loading="lazy"
class="img-brand-logo"
src="assets/pngs/logo-bg-stone.png"
alt="flaticon cart logo"
/>
<a
class="brand-name"
href="https://inclusive-mart.netlify.app"
target="_blank"
>
<span>Inclusive</span>
<span class="mart-text">Mart</span>
</a>
</div>
<form class="navbar-form">
<input type="text" placeholder="search for product" />
<button type="submit">
<i class="fas fa-search"></i>
</button>
</form>
<div class="navbar-align">
<button class="navbar-btn-log translate-y">Log In</button>
<a href="#" class="badge-btn mx-2 text-white translate-y">
<i class="fas fa-heart"></i>
<span class="badge-count bg-red-500">0</span>
</a>
<a href="#" class="badge-btn mr-1 text-white translate-y">
<i class="fas fa-shopping-cart"></i>
<span class="badge-count bg-red-500">0</span>
</a>
</div>
</nav>
<div class="navbar-md-container">
<form class="navbar-form">
<input type="text" placeholder="search for product" />
<button type="submit">
<i class="fas fa-search"></i>
</button>
</form>
<button class="navbar-btn-log translate-y">Log In</button>
</div>
</div>
</section>
<section class="section-component">
<h2 class="section-head">Mobile Variation One</h2>
<p class="section-text">
You can resize the browser width to see the hamburger in action
</p>
<div class="navbar-container">
<nav class="navbar-align px-2 py-1">
<div class="navbar-align">
<img
loading="lazy"
class="img-brand-logo"
src="assets/pngs/logo-bg-stone.png"
alt="flaticon cart logo"
/>
<a
class="brand-name"
href="https://inclusive-mart.netlify.app"
target="_blank"
>
<span>Inclusive</span>
<span class="mart-text">Mart</span>
</a>
</div>
<form class="navbar-form">
<input type="text" placeholder="search for product" />
<button type="submit">
<i class="fas fa-search"></i>
</button>
</form>
<div class="navbar-align navbar-sm">
<button class="navbar-btn-log translate-y">Log In</button>
<a href="#" class="badge-btn mx-2 text-white translate-y">
<i class="fas fa-heart"></i>
<span class="badge-count bg-red-500">0</span>
</a>
<a href="#" class="badge-btn mr-1 text-white translate-y">
<i class="fas fa-shopping-cart"></i>
<span class="badge-count bg-red-500">0</span>
</a>
</div>
<div class="navbar-sm-container relative">
<button class="btn-sm-navbar translate-y">
<i class="fas fa-bars"></i>
<i class="fas fa-times d-none"></i>
</button>
<ul class="d-none navbar-sm-list">
<li class="my-1">
<a class="translate-y" href="#">
<i class="fas fa-heart mx-0p5"></i> Wishlist
</a>
</li>
<li class="my-1">
<a class="translate-y" href="#">
<i class="fas fa-shopping-cart mx-0p5"></i> Cart
</a>
</li>
<li class="my-1">
<a class="translate-y" href="#">
<i class="fas fa-door-open mx-0p5"></i> Log In
</a>
</li>
</ul>
</div>
</nav>
<div class="navbar-md-container navbar-sm">
<form class="navbar-form">
<input type="text" placeholder="search for product" />
<button type="submit">
<i class="fas fa-search"></i>
</button>
</form>
<button class="navbar-btn-log translate-y">Log In</button>
</div>
</div>
</section>
<!-- Navigation Component Ends -->
<!-- Rating Component Starts -->
<section class="section-component">
<h2 class="section-head">Filled Rating</h2>
<span class="rating-star filled"> ★ </span>
<span class="rating-star filled"> ★ </span>
<span class="rating-star filled"> ★ </span>
<span class="rating-star"> ★ </span>
<span class="rating-star"> ★ </span>
</section>
<section class="section-component">
<h2 class="section-head">Live Rating</h2>
<fieldset class="ratings">
<input type="radio" name="rating" id="star-5" /><label for="star-5">
★
</label>
<input type="radio" name="rating" id="star-4-n-half" /><label
for="star-4-n-half"
class="half-star"
>
★