-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1498 lines (1353 loc) · 57 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" />
<link rel="icon" href="/assets/pixel.png" />
<link rel="stylesheet" href="./styles.css" />
<link rel="stylesheet" href="./core.css" />
<link rel="stylesheet" href="./utils/prism/prism.css" />
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<title>Pixel / Documentation</title>
</head>
<body>
<!-- Documentation wrapper -->
<div class="container">
<!-- Navbar -->
<nav id="navbar" class="wrapper_nav flex">
<h1>
<a href="/index.html">
<span title="pixel-ui" class="h2 nav_brand_text"> PIXEL</span></a
>
</h1>
<div class="wrapper_nav_menu">
<ul class="nav_menu flex">
<li class="p">
<a
href="https://twitter.com/gauravsinhaweb"
rel="noopener noreferrer"
target="_blank"
>
<div>
<i class="fab fa-twitter nav_icon twitter"></i>
</div>
</a>
</li>
<li class="p">
<a
href="https://github.com/gauravsinhaweb/Pixel-UI"
rel="noopener noreferrer"
target="_blank"
>
<div>
<i class="fab fa-github nav_icon github"></i>
</div>
</a>
</li>
<li id="theme" class="p">
<div>
<i class="fa fa-moon nav_icon theme"></i>
</div>
</li>
<li id="hamburger" class="p">
<div>
<i class="fas fa-bars nav_icon hamburger"></i>
</div>
</li>
</ul>
</div>
</nav>
<!-- Sidebar -->
<aside id="aside">
<ul class="wrapper_aside flex">
<li class="aside_head">getting started</li>
<li class="component">installation</li>
<a href="./utils/typography/typography.html"
><li class="component">Text utilities</li></a
>
<li class="aside_head">components</li>
<a href="./components/alert/alert.html"
><li class="component">Alert</li></a
>
<a href="./components/avatar/avatar.html"
><li class="component">Avatar</li></a
>
<a href="./components/badge/badge.html"
><li class="component">badge</li></a
>
<a href="./components/button/button.html"
><li class="component">button</li></a
>
<a href="./components/card/card.html"
><li class="component">card</li></a
>
<a href="./components/image/image.html"
><li class="component">image</li></a
>
<a href="./components/input/input.html"
><li class="component">input</li></a
>
<a href="./components/list/list.html"
><li class="component">List</li></a
>
<a href="./components/modal/modal.html"
><li class="component">Modal</li></a
>
<a href="./components/navigation/navigation.html"
><li class="component">Navigation</li></a
>
<a href="./components/rating/rating.html"
><li class="component">Rating</li></a
>
<a href="./components/snackbar/snackbar.html"
><li class="component">Snackbar</li></a
>
<a href="./components/grid/grid.html"
><li class="component">grid</li></a
>
<a href="./components/slider/slider.html"
><li class="component">Slider</li></a
>
</ul>
</aside>
<!-- Main -->
<main>
<!-- Alert component -->
<section class="comp_wrapper">
<h1 class="comp_head-text">alert</h1>
<p class="comp_desc-text p-lg">
The alert component has six variants
<span class="comp_desc_highlight">alert-primary</span>,
<span class="comp_desc_highlight">alert-secondary</span>,
<span class="comp_desc_highlight">alert-danger</span>,
<span class="comp_desc_highlight">alert-info</span>,
<span class="comp_desc_highlight">alert-success</span> and
<span class="comp_desc_highlight">alert-warning</span>
</p>
<h2 class="comp_head-text h3">standard alerts</h2>
<div class="wrapper_comp_box p-lg">
<div class="alert alert-primary">
<strong>primary</strong>: An alert for a message!
</div>
<div class="alert alert-secondary">
<strong>secondary</strong>: An alert for a message!
</div>
<div class="alert alert-danger">
<strong>danger</strong>: An alert for a message!
</div>
<div class="alert alert-info">
<strong>info</strong>: An alert for a message!
</div>
<div class="alert alert-success">
<strong>success</strong>: An alert for a message!
</div>
<div class="alert alert-warning">
<strong>warning</strong>: An alert for a message!
</div>
</div>
<!-- code snippet -->
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Alert -->
<div class="alert alert-primary">
<strong>primary</strong>: An alert for a message!
</div>
<div class="alert alert-secondary">
<strong>secondary</strong>: An alert for a message!
</div>
<div class="alert alert-danger">
<strong>danger</strong>: An alert for a message!
</div>
</script>
</div>
</section>
<!-- Avatar component -->
<section class="comp_wrapper">
<h1 class="comp_head-text">avatar</h1>
<p class="comp_desc-text p-lg">
The avatar component has 5 sizes,
<span class="comp_desc_highlight"> avatar-xl</span>,
<span class="comp_desc_highlight"> avatar-lg</span>,
<span class="comp_desc_highlight">avatar-md</span>,
<span class="comp_desc_highlight">avatar-sm</span>,
<span class="comp_desc_highlight">avatar-xs</span>, having
<span class="comp_desc_highlight">rd</span>,for round avatar,
<span class="comp_desc_highlight">sq</span>,for square avatar,
</p>
<h2 class="comp_head-text h3">standard avatars</h2>
<div class="wrapper_comp_box p-lg">
<div class="wrapper_av flex">
<span class="avatar av-xl">
<img src="../../assets/av.png" alt="avatar" class="rd" />
</span>
<span class="avatar av-lg">
<img src="../../assets/av.png" alt="avatar" class="sq" />
</span>
<span class="avatar av-md">
<img src="../../assets/av.png" alt="avatar" class="rd" />
</span>
<span class="avatar av-sm">
<img src="../../assets/av.png" alt="avatar" />
</span>
<span class="avatar av-xs">
<img src="../../assets/av.png" alt="avatar" />
</span>
</div>
</div>
<!-- code snippet -->
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Avatar -->
<span class="avatar av-xl">
<img src="..." alt="..." class="rd" />
</span>
<span class="avatar av-lg">
<img src="..." alt="..." class="sq" />
</span>
<span class="avatar av-md">
<img src="..." alt="..." class="rd" />
</span>
</script>
</div>
</section>
<!-- Badge component -->
<section class="comp_wrapper">
<h1 class="comp_head-text">Badge</h1>
<p class="comp_desc-text p-lg">
The Badge component has 5 sizes,
<span class="comp_desc_highlight"> av_badge_lg</span>,
<span class="comp_desc_highlight"> av_badge_md</span>,
<span class="comp_desc_highlight">av_badge_sm</span>, having 3
states, <span class="comp_desc_highlight">online</span>,
<span class="comp_desc_highlight">offline</span>,
<span class="comp_desc_highlight">idle</span>,having
<span class="comp_desc_highlight">rd</span>,for round badge,
<span class="comp_desc_highlight">sq</span>,for square badge,
</p>
<h2 class="comp_head-text h3">standard badge</h2>
<div class="wrapper_comp_box p-lg">
<div class="wrapper_av flex">
<span class="avatar av-xl">
<img src="../../assets/av.png" alt="avatar" class="rd" />
<div
title="Square online badge"
class="av_badge_lg online rd"
></div>
</span>
<span class="avatar av-lg">
<img src="../../assets/av.png" alt="avatar" class="sq" />
<div
title="Square offline badge"
class="av_badge_md offline sq"
></div>
</span>
<span class="avatar av-md">
<img src="../../assets/av.png" alt="avatar" class="rd" />
<div
title="Square offline badge"
class="av_badge_md idle rd"
></div>
</span>
<span class="">
<span class="wrapper_badge">
<i class="fa fa-shopping-cart" aria-hidden="true"> </i>
<span class="badge badge_text flex-center">6</span>
</span>
</span>
</div>
</div>
<!-- code snippet -->
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Badge -->
<span class="avatar av-xl">
<img src="..." alt="..." class="rd" />
<div
class="av_badge_lg online rd"
></div>
</span>
<span class="avatar av-sm">
<icon />
<div
class="av_badge_sm bell_badge flex-center"
>
6
</div>
</span>
</script>
</div>
</section>
<!-- Button component -->
<section class="comp_wrapper">
<h1 class="comp_head-text">Button</h1>
<p class="comp_desc_text p-lg">
The Button component i.e.
<span class="comp_desc_highlight">btn</span>, comes in two
catagories, <i>solid buttons </i>and
<i> outlined buttons.</i>
</p>
<h2 class="comp_head-text h3">solid Buttons</h2>
<p class="comp_desc_text p-lg">
The Solid button is contained with filled colors inside, has five
variants
<span class="comp_desc_highlight">btn-primary</span>,
<span class="comp_desc_highlight">btn-cta</span>,
<span class="comp_desc_highlight">btn-danger</span>,
<span class="comp_desc_highlight">btn-link</span>,
<span class="comp_desc_highlight">btn disabled</span>
</p>
<div class="wrapper_comp_box p-lg">
<div class="wrapper_av flex">
<button class="btn btn-primary">primary</button>
<button class="btn btn-cta">button</button>
<button class="btn btn-danger">danger</button>
<button class="btn-link">Link to</button>
<button disabled="true" class="btn">disabled</button>
</div>
</div>
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Button Contained-->
<button class="btn btn-primary">primary</button>
<button class="btn btn-cta">button</button>
<button class="btn btn-danger">danger</button>
<button class="btn-link">Link to</button>
</script>
</div>
<h2 class="comp_head-text h3">Outlined Buttons</h2>
<p class="comp_desc_text p-lg">
The Solid button is Outlined, and has five variants
<span class="comp_desc_highlight">out-primary</span>,
<span class="comp_desc_highlight">out-cta</span>,
<span class="comp_desc_highlight">out-danger</span>,
<span class="comp_desc_highlight">out-success</span>,
<span class="comp_desc_highlight">out-info</span>
</p>
<div class="wrapper_comp_box p-lg">
<div class="wrapper_av flex">
<button class="btn out-primary">primary</button>
<button class="btn out-cta">button</button>
<button class="btn out-danger">danger</button>
<button class="btn out-success">success</button>
<button class="btn out-info btn-dismiss">Dismiss</button>
</div>
</div>
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Button Outlined -->
<button class="btn out-primary">primary</button>
<button class="btn out-cta">button</button>
<button class="btn out-danger">danger</button>
<button class="btn out-success">success</button>
</script>
</div>
<!-- floating action, icon button -->
<h2 class="comp_head-text h3">icon and floating action Button</h2>
<p class="comp_desc_text p-lg">
The floating action button
<span class="comp_desc_highlight">fa-btn</span>
and button with an icon
<span class="comp_desc_highlight">btn-icon</span>,
</p>
<div class="wrapper_comp_box p-lg">
<div class="wrapper_av flex">
<button class="btn fa-btn">
<i class="fa fa-arrow-up" aria-hidden="true"></i>
</button>
<button class="btn btn-cta">
Login
<i class="fa btn-icon fa-arrow-right" aria-hidden="true"></i>
</button>
</div>
</div>
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- icon and floating action button-->
<button class="btn fa-btn">
<i class="fa fa-arrow-up" aria-hidden="true"></i>
</button>
<button class="btn btn-cta">
Sign Up
<i class="fa btn-icon fa-arrow-right" aria-hidden="true"></i>
</button>
</script>
</div>
</section>
<!-- Card component -->
<section class="comp_wrapper">
<h1 class="comp_head-text">Card</h1>
<p class="comp_desc_text p-lg">
The Card component has three variants, 1.
<i>basic Card or vertical card</i>, 2.
<i>shopping card or horizontal card</i> and 3. <i>pricing card</i>
</p>
<h2 class="comp_head-text h3">basic Cards (vertical card)</h2>
<p class="comp_desc_text p-lg">
The basic Card component has 4 catagories, 1.
<i>Cards with badges</i>, 2. <i>Cards with dismiss</i> and 3.
<i>Cards with text overlay</i> and 4.<i> text only cards </i>
</p>
<!-- Cards with badges (cwb)- -->
<div class="wrapper_comp_box wrapper_card flex">
<div title="Cards with badges" class="card">
<div class="img"></div>
<div class="card-content">
<div class="title">Title</div>
<div class="sub-title">sub-title</div>
<div class="content">
Ex ad et excepteur ad qui adipisicing velit excepteur ea.
Eiusmod sint proident magna excepteur quis officia ullamco.
Cillum exercitation commodo esse aliquip nostrud esse ex
tempor ex.
</div>
<div class="footer flex footer_cwb">
<div class="icons flex-center">
<div style="display: none">
<svg>
<use xlink:href="#heart" />
</svg>
<svg>
<use xlink:href="#share" />
</svg>
<svg>
<use xlink:href="#dot" />
</svg>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
id="heart"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
id="share"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
/>
</svg>
<svg
class=""
xmlns="http://www.w3.org/2000/svg"
id="dot"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
/>
</svg>
</div>
</div>
</div>
</div>
<!-- Cards with dismiss (cwd) -->
<div title="Cards with dismiss" class="card">
<div class="img"></div>
<div class="card-content">
<div class="title">Title</div>
<div class="sub-title">sub-title</div>
<div class="content">
Ex ad et excepteur ad qui adipisicing velit excepteur ea.
Eiusmod sint proident magna excepteur quis officia ullamco.
Cillum exercitation commodo esse aliquip nostrud esse ex
tempor ex.
</div>
<div class="footer btn_wrapper_cwd flex">
<div class="btn_wrapper flex-center">
<button class="btn btn-cta">action 1</button>
<button class="btn out-danger btn-dismiss">dismiss</button>
</div>
</div>
</div>
</div>
<!-- Cards with text overlay (cwt) -->
<div id="basic-text-media">
<div class="wrapper">
<div title="cards with text overlay" class="card">
<div class="img flex img-cwt">
<div class="title">Our Changing Planet</div>
<div class="sub-title">by Kurt Wagner</div>
</div>
<div class="card-content">
<div class="content">
Tempor ea ad dolor esse eiusmod proident incididunt
commodo.
</div>
<div class="footer flex-center">
<div class="flex-center btn_wrapper">
<button class="btn out-cta">Bookmark</button>
<button class="btn btn-cta">Read</button>
</div>
<div class="icons flex-center">
<div style="display: none">
<svg>
<use xlink:href="#heart" />
</svg>
<svg>
<use xlink:href="#share" />
</svg>
<svg>
<use xlink:href="#dot" />
</svg>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
id="heart"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
id="share"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
id="dot"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
<!--text only cards -->
<div id="basic-text-media">
<div class="wrapper">
<div title="Text only cards" class="card">
<div class="card-content">
<div class="title">Our Changing Planet</div>
<div class="sub-title">by Kurt Wagner</div>
<div class="content">
Do velit dolor labore irure fugiat laboris pariatur nulla.
Ut irure laboris commodo voluptate duis tempor eu ad
incididunt irure consectetur non veniam adipisicing.
</div>
<div class="footer flex-center">
<div class="flex-center btn_wrapper">
<button class="btn out-cta">Bookmark</button>
<button class="btn btn-cta">Read</button>
</div>
<div class="icons flex-center">
<div style="display: none">
<svg>
<use xlink:href="#heart" />
</svg>
<svg>
<use xlink:href="#share" />
</svg>
<svg>
<use xlink:href="#dot" />
</svg>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
id="heart"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
id="share"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
id="dot"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#666666"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Card - Basic -->
<div class="card">
<div class="img"></div>
<div class="card-content">
<div class="title">Our Changing Planet</div>
<div class="sub-title">by Kurt Wagner</div>
<div class="content">
Visit ten places on our planet that are undergoing the biggest
changes today.
</div>
<div class="footer flex-center">
<div class="btn_wrapper flex-center">
<button class="btn btn-cta">Read</button>
<button class="btn out-cta">Bookmark</button>
</div>
<div class="icons flex-center">
....
</div>
</div>
</div>
</div>
</div>
</script>
</div>
<!-- shopping card -->
<h2 class="comp_head-text h3">shopping Cards (horizontal cards)</h2>
<p class="comp_desc_text p-lg">
Card are used to show user related data collectively, like product
details.
</p>
<div class="wrapper_comp_box flex">
<div class="card_hr flex">
<div class="card_hr_img">
<img src="./assets/xbox.png" alt="xbox" />
</div>
<div class="card_hr_content">
<h2>Xbox One Series S</h2>
<p class="p-lg"><strong>Platform</strong> : Xbox One</p>
<p class="card_hr_desc">
Go all-digital and enjoy disc-free, next-gen gaming with the
smallest Xbox console ever made Xbox game Pass ultimate
includes over 100 high-quality games.
</p>
<div class="card_hr_price text_cl">
<div class="p-lg">
m.r.p.: <span class="text_line_th">$400</span>
</div>
<div class="p-lg">
deal of the day:<span class="h2 dod_price"> $200</span>
</div>
</div>
</div>
<div class="flex btn_wrapper btn_wrapper_hr">
<button class="btn out-cta">add to cart</button>
<button class="btn btn-cta">buy now</button>
</div>
</div>
</div>
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Card - horizontal -->
<div class="card_hr flex">
<div class="card_hr_img">
<img src="..." alt="..." />
</div>
<div class="card_hr_content">
<h2>Xbox One Series S</h2>
<p class="p-lg"><strong>Platform</strong> : Xbox One</p>
<p class="card_hr_desc">
Go all-digital and enjoy disc-free, next-gen gaming with the
smallest Xbox console ever made Xbox game Pass ultimate
includes over 100 high-quality games.
</p>
<div class="card_hr_price text_cl">
<div class="p-lg">
m.r.p.: <span class="text_line_th">$400</span>
</div>
<div class="p-lg">
deal of the day:<span class="h2 dod_price"> $200</span>
</div>
</div>
</div>
<div class="flex btn_wrapper btn_wrapper_hr">
<button class="btn out-cta">add to cart</button>
<button class="btn btn-cta">buy now</button>
</div>
</div>
</script>
</div>
<!-- Card component - pricing card -->
<h2 class="comp_head-text h3">pricing Cards</h2>
<p class="comp_desc_text p-lg">
Pricing card is used in subscription plans
</p>
<!-- card pricing starter -->
<div class="wrapper_comp_box wrapper_pricing_card flex">
<div class="card_pricing card_starter">
<div class="plan">
<span class="price h1">$20</span
><span class="duration h3">/month</span>
</div>
<div class="pack h1">starter</div>
<hr class="line" />
<ul class="feature p-lg">
<li>all limited links</li>
<li>own analytic platform</li>
<li>chat support</li>
<li>optimize hashtag</li>
<li>optimize hashtags</li>
<li>unlimited users</li>
</ul>
</div>
<!-- card pricing pro -->
<div class="card_pricing card_pro">
<div class="plan">
<span class="price h1">$100</span
><span class="duration h3">/month</span>
</div>
<div class="pack h1">pro</div>
<hr class="line" />
<ul class="feature p-lg">
<li>all limited links</li>
<li>own analytic platform</li>
<li>chat support</li>
<li>optimize hashtag</li>
<li>optimize hashtags</li>
<li>unlimited users</li>
</ul>
</div>
<!-- card pricing enterprise -->
<div class="card_pricing card_enterprise">
<div class="plan">
<span class="price h1">$200</span
><span class="duration h3">/month</span>
</div>
<div class="pack h1">enterprise</div>
<hr class="line" />
<ul class="feature p-lg">
<li>all limited links</li>
<li>own analytic platform</li>
<li>chat support</li>
<li>optimize hashtag</li>
<li>optimize hashtags</li>
<li>unlimited users</li>
</ul>
</div>
</div>
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Card - pricing -->
<div class="card_pricing card_starter">
<div class="plan">
<span class="price h1">$20</span
><span class="duration h3">/month</span>
</div>
<div class="pack h1">starter</div>
<hr class="line" />
<ul class="feature p-lg">
<li>all limited links</li>
<li>own analytic platform</li>
<li>chat support</li>
<li>optimize hashtag</li>
<li>optimize hashtags</li>
<li>unlimited users</li>
</ul>
</div>
</script>
</div>
</section>
<!-- Image -->
<section class="comp_wrapper">
<h1 class="comp_head-text">Image</h1>
<!-- Responsive image -->
<h2 class="comp_head-text h3">Responsive Image</h2>
<p class="comp_desc-text p-lg">
The Image component has two variants
<span class="comp_desc_highlight">img-res</span>, for full size
Responsive image.
</p>
<div class="wrapper_comp_box flex-center">
<div class="img_res">
<img src="https://picsum.photos/800/300" alt="image" />
</div>
</div>
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Image Responsive (img_res) -->
<div class="img_res">
<img src="..." alt="..." />
</div>
</script>
</div>
<!-- round img, square img -->
<h2 class="comp_head-text h3">Round and squared Image</h2>
<p class="comp_desc-text p-lg">
The Image component has four variants
<span class="comp_desc_highlight">img-xl</span>, for extra large
image, <span class="comp_desc_highlight">img_lg</span>, for large
image, <span class="comp_desc_highlight">img_md</span>, for medium
image, <span class="comp_desc_highlight">img_sm</span>, for small
image. with round <span class="comp_desc_highlight">rd</span> and
square edges <span class="comp_desc_highlight">sq</span>.
</p>
<div class="wrapper_comp_box flex-center comp_img_wrapper">
<div class="img_lg">
<img src="https://picsum.photos/400" alt="image" class="sq" />
</div>
<div class="img_md">
<img src="https://picsum.photos/400" alt="image" class="rd" />
</div>
</div>
<!-- code snippet -->
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Image round(rd) and square(sq) -->
<div class="img_lg">
<img src="..." alt="..." class="sq" />
</div>
<div class="img_md">
<img src="..." alt="..." class="rd" />
</div>
</script>
</div>
</section>
<!-- Input -->
<section class="comp_wrapper">
<h1 class="comp_head-text">input</h1>
<p class="comp_desc-text p-lg">
The input component has two variants
<i>input sizes</i> and <i>input type</i>
</p>
<h2 class="comp_head-text h3">input sizes</h2>
<p>
<span class="comp_desc_highlight"> inp_lg</span>,
<span class="comp_desc_highlight"> inp_md</span>,
<span class="comp_desc_highlight"> inp_sm</span>
</p>
<div class="wrapper_comp_box flex-center">
<div class="wrapper_input flex">
<p class="p inp_p">input large:</p>
<input class="basic_inp inp_lg" type="text" />
<p class="p inp_p">input medium:</p>
<input class="basic_inp inp_md" type="text" />
<p class="p inp_p">input small:</p>
<input class="basic_inp inp_sm" type="text" />
</div>
</div>
<!-- code snippet -->
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Image round(rd) and square(sq) -->
<input class="basic_inp inp_lg" type="text" />
<input class="basic_inp inp_md" type="text" />
<input class="basic_inp inp_sm" type="text" />
</script>
</div>
<!-- input type -->
<h2 class="comp_head-text h3">input type</h2>
<p class="comp_desc-text p-lg">
The input component has one type i.e.
<i>Input error</i> <span class="comp_desc_highlight">inp_err</span>
</p>
<div class="wrapper_comp_box flex-center">
<div class="wrapper_input flex">
<p class="p inp_p">input error (inp_err):</p>
<input class="inp_lg inp_err" type="text" />
</div>
</div>
<!-- code snippet -->
<div class="comp_snippet">
<script type="text/plain" class="line-numbers language-markup">
<!-- Input error -->
<input class="inp_lg inp_err" type="text" />
</script>
</div>
</section>