This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
test-3.html
2913 lines (2367 loc) · 102 KB
/
test-3.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" id="top">
<head>
<meta charset="utf-8">
<title>Bootstrap 4 test page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="./dist/bootstrap-night.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/atom-one-dark.min.css" id="hljs-theme">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
#typography {
margin-top: -3rem;
}
.modal {
position: relative;
top: auto;
right: auto;
bottom: auto;
left: auto;
z-index: 1;
display: block;
}
</style>
</head>
<body data-spy="scroll" data-target="#my-navbar" data-offset="100">
<header class="bg-dark text-light pt-5 pb-5">
<div class="container">
<h1 class="display-3">Bootstrap 4 test page</h1>
<h1 class="display-4 text-secondary">by <a href="https://juzraai.github.io/" class="text-info">juzraai</a></h1>
</div>
</header>
<nav class="navbar sticky-top navbar-expand-md navbar-dark bg-dark">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#my-navbar" aria-controls="my-navbar" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="my-navbar">
<div class="navbar-nav mr-auto">
<a class="nav-item nav-link" href="#typography"
data-toggle="tooltip" data-placement="bottom" title="Typography">
<span class="fa fa-paragraph mx-2"></span>
<span class="d-md-none">Typography</span>
</a>
<a class="nav-item nav-link" href="#images"
data-toggle="tooltip" data-placement="bottom" title="Images">
<span class="fa fa-picture-o mx-2"></span>
<span class="d-md-none">Images</span>
</a>
<a class="nav-item nav-link" href="#tables"
data-toggle="tooltip" data-placement="bottom" title="Tables">
<span class="fa fa-table mx-2"></span>
<span class="d-md-none">Tables</span>
</a>
<a class="nav-item nav-link" href="#list-groups"
data-toggle="tooltip" data-placement="bottom" title="List groups">
<span class="fa fa-list-ul mx-2"></span>
<span class="d-md-none">List groups</span>
</a>
<a class="nav-item nav-link" href="#buttons"
data-toggle="tooltip" data-placement="bottom" title="Buttons">
<span class="fa fa-square mx-2"></span>
<span class="d-md-none">Buttons</span>
</a>
<a class="nav-item nav-link" href="#jumbotrons"
data-toggle="tooltip" data-placement="bottom" title="Jumbotrons">
<span class="fa fa-bookmark mx-2"></span>
<span class="d-md-none">Jumbotrons</span>
</a>
<a class="nav-item nav-link" href="#cards"
data-toggle="tooltip" data-placement="bottom" title="Cards">
<span class="fa fa-square-o mx-2"></span>
<span class="d-md-none">Cards</span>
</a>
<a class="nav-item nav-link" href="#forms"
data-toggle="tooltip" data-placement="bottom" title="Forms">
<span class="fa fa-pencil mx-2"></span>
<span class="d-md-none">Forms</span>
</a>
<a class="nav-item nav-link" href="#navs"
data-toggle="tooltip" data-placement="bottom" title="Navs">
<span class="fa fa-bars mx-2"></span>
<span class="d-md-none">Navs</span>
</a>
<a class="nav-item nav-link" href="#badges"
data-toggle="tooltip" data-placement="bottom" title="Badges">
<span class="fa fa-tag mx-2"></span>
<span class="d-md-none">Badges</span>
</a>
<a class="nav-item nav-link" href="#alerts"
data-toggle="tooltip" data-placement="bottom" title="Alerts">
<span class="fa fa-exclamation-triangle mx-2"></span>
<span class="d-md-none">Alerts</span>
</a>
<a class="nav-item nav-link" href="#popovers"
data-toggle="tooltip" data-placement="bottom" title="Popovers">
<span class="fa fa-info-circle mx-2"></span>
<span class="d-md-none">Popovers</span>
</a>
<a class="nav-item nav-link" href="#progress-bars"
data-toggle="tooltip" data-placement="bottom" title="Progress bars">
<span class="fa fa-spinner mx-2"></span>
<span class="d-md-none">Progress bars</span>
</a>
<a class="nav-item nav-link" href="#modals"
data-toggle="tooltip" data-placement="bottom" title="Modals">
<span class="fa fa-window-restore mx-2"></span>
<span class="d-md-none">Modals</span>
</a>
</div>
<div class="navbar-nav">
<a class="nav-item nav-link" href="https://getbootstrap.com/docs/4.5/"
data-toggle="tooltip" data-placement="bottom" title="Bootstrap documentation">
<span class="fa fa-book mx-2"></span>
<span class="d-md-none">Bootstrap documentation</span>
</a>
<a class="nav-item nav-link" href="https://github.com/juzraai/bootstrap4-test-page"
data-toggle="tooltip" data-placement="bottom" title="Source code">
<span class="fa fa-github mx-2"></span>
<span class="d-md-none">Source code</span>
</a>
</div>
</div>
</div>
</nav>
<main>
<section class="mb-5 pt-5" id="typography">
<div class="row bg-light py-4 mb-5">
<div class="container">
<div class="d-flex justify-content-between">
<h2>
<span class="fa fa-paragraph mr-1"></span>
Typography
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.5/content/typography/"
data-toggle="tooltip" data-placement="bottom" title="Typography docs"><span class="fa fa-book fw"></span></a>
<a href="https://getbootstrap.com/docs/4.5/content/code/"
data-toggle="tooltip" data-placement="bottom" title="Code docs"><span class="fa fa-book fw"></span></a>
<a href="https://getbootstrap.com/docs/4.5/utilities/colors/"
data-toggle="tooltip" data-placement="bottom" title="Color utility docs"><span class="fa fa-book fw"></span></a>
<a href="https://getbootstrap.com/docs/4.5/utilities/text/"
data-toggle="tooltip" data-placement="bottom" title="Text utility docs"><span class="fa fa-book fw"></span></a>
<a href="#top" class="ml-3"><span class="fa fa-chevron-up fw"></span></a>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="row px-5">
<div class="col-md-6">
<h3 class="mt-5">Headings</h3>
<h1>h1. Bootstrap heading</h1>
<h2>h2. Bootstrap heading</h2>
<h3>h3. Bootstrap heading</h3>
<h4>h4. Bootstrap heading</h4>
<h5>h5. Bootstrap heading</h5>
<h6>h6. Bootstrap heading</h6>
<h3 class="mt-5">Lead</h3>
<p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
<h3 class="mt-5">Styles</h3>
<p>You can use the mark tag to
<mark>highlight</mark> text.</p>
<p>
<del>This line of text is meant to be treated as deleted text.</del>
</p>
<p>
<s>This line of text is meant to be treated as no longer accurate.</s>
</p>
<p>
<ins>This line of text is meant to be treated as an addition to the document.</ins>
</p>
<p>
<u>This line of text will render as underlined</u>
</p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><strong>This line rendered as bold text.</strong></p>
<p><em>This line rendered as italicized text.</em></p>
<p class="text-muted">And this is a muted text.</p>
<p><abbr title="Abbreviation">abbr</abbr> <abbr title="Abbreviation with initialism" class="initialism">abbr+init</abbr></p>
<h3 class="mt-5">Colors</h3>
<p>
<span class="text-primary">.text-primary</span>
<span class="text-secondary">.text-secondary</span>
<span class="text-success">.text-success</span>
<span class="text-danger">.text-danger</span>
<span class="text-warning">.text-warning</span>
<span class="text-info">.text-info</span>
<span class="text-light">.text-light</span>
<span class="text-dark">.text-dark</span>
<span class="text-white">.text-white</span>
</p>
<p>
<span><a href="#" class="text-primary">Primary link</a></span>
<span><a href="#" class="text-secondary">Secondary link</a></span>
<span><a href="#" class="text-success">Success link</a></span>
<span><a href="#" class="text-danger">Danger link</a></span>
<span><a href="#" class="text-warning">Warning link</a></span>
<span><a href="#" class="text-info">Info link</a></span>
<span><a href="#" class="text-light">Light link</a></span>
<span><a href="#" class="text-dark">Dark link</a></span>
<span><a href="#" class="text-white">White link</a></span>
</p>
<h3 class="mt-5">Inline code</h3>
<p>For example, <code><section></code> should be wrapped as inline.</p>
<p><var>y</var> = <var>m</var><var>x</var> + <var>b</var></p>
<p>To switch directories, type <kbd>cd</kbd> followed by the name of the directory.<br> To edit settings, press <kbd><kbd>ctrl</kbd> + <kbd>,</kbd></kbd>
</p>
<p><samp>This text is meant to be treated as sample output from a computer program.</samp></p>
</div>
<div class="col-md-6">
<h3 class="mt-5">Displays</h3>
<h1 class="display-1">Display 1</h1>
<h1 class="display-2">Display 2</h1>
<h1 class="display-3">Display 3</h1>
<h1 class="display-4">Display 4</h1>
<h3 class="mt-5">Sample body</h3>
<p class="text-justify">
Lórum ipse - mint senyért - nyált <a href="javascript:void(0)">ságos iség</a>, ahol beles metás, csaprozás, vermény, csaprát
és más meni zsorlóca kuncáskodik. Mosztag, férzet napé, fuvódás 11, törnyélés ; valamint szuvegés vitancs: a dozmus drikója,
jultsás kelés magyarul. A szuvegés és gyarány pasztákban buggyos mendernyékről, filingéjükről és pucájukról húzódik a
fabampa. Hűtő benne a legújabban belég mendernyék mártja is, részletesen sáskodik a kétenc fríg lepkonyaival. Csétletésről
cigál le egy kéző lengelész csapárába rimulnia, ahol három másik szivény együtt érleti spotráit. Ha a bénulás summája
kalkodik, úgy púdulhat, mintha az volna a sülső csoltása, hogy a szedhentes és egyes tengyelét lécetse ki a pávágyokból.
Ez vajon vertető ölyök vagy vegítő dosna? Szalalizál bunya a felegesben olyan szellőző kedő, amely farisban kevetteti
a nyagondos hizmusok „énemlő” lárias mizmusait?
</p>
<h3 class="mt-5">Code block</h3>
<button class="btn btn-sm btn-primary my-1" id="hljs-theme-toggler">Toggle HLJS theme</button>
<pre><code>/**
* @author John Smith <[email protected]>
*/
package l2f.gameserver.model;
public abstract class L2Char extends L2Object {
public static final Short ERROR = 0x0001;
public void moveTo(int x, int y, int z) {
_ai = null;
log("Should not be called");
if (1 > 5) { // wtf!?
return;
}
}
}</code></pre>
</div>
</div>
<div class="row px-5">
<div class="col-12">
<h3 class="mt-5">Blockquote</h3>
<blockquote class="blockquote">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
<div class="row px-5">
<div class="col-12">
<h3 class="mt-5">...centered</h3>
<blockquote class="blockquote text-center">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
<div class="row px-5">
<div class="col-12">
<h3 class="mt-5">...on right</h3>
<blockquote class="blockquote text-right">
<p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
<div class="row px-5">
<div class="col-4">
<h3 class="mt-5">List</h3>
<ul>
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipiscing elit</li>
<li>Integer molestie lorem at massa</li>
<li>Facilisis in pretium nisl aliquet</li>
<li>Nulla volutpat aliquam velit
<ul>
<li>Phasellus iaculis neque</li>
<li>Purus sodales ultricies</li>
<li>Vestibulum laoreet porttitor sem</li>
<li>Ac tristique libero volutpat at</li>
</ul>
</li>
<li>Faucibus porta lacus fringilla vel</li>
<li>Aenean sit amet erat nunc</li>
<li>Eget porttitor lorem</li>
</ul>
</div>
<div class="col-4">
<h3 class="mt-5">...unstyled</h3>
<ul class="list-unstyled">
<li>Lorem ipsum dolor sit amet</li>
<li>Consectetur adipiscing elit</li>
<li>Integer molestie lorem at massa</li>
<li>Facilisis in pretium nisl aliquet</li>
<li>Nulla volutpat aliquam velit
<ul>
<li>Phasellus iaculis neque</li>
<li>Purus sodales ultricies</li>
<li>Vestibulum laoreet porttitor sem</li>
<li>Ac tristique libero volutpat at</li>
</ul>
</li>
<li>Faucibus porta lacus fringilla vel</li>
<li>Aenean sit amet erat nunc</li>
<li>Eget porttitor lorem</li>
</ul>
</div>
<div class="col-4">
<h3 class="mt-5">...inline</h3>
<ul class="list-inline">
<li class="list-inline-item">Lorem ipsum</li>
<li class="list-inline-item">Phasellus iaculis</li>
<li class="list-inline-item">Nulla volutpat</li>
</ul>
</div>
</div>
<div class="row px-5">
<div class="col-12">
<h3 class="mt-5">Definition list</h3>
</div>
</div>
<dl class="row px-5">
<dt class="col-sm-3">Description lists</dt>
<dd class="col-sm-9">A description list is perfect for defining terms.</dd>
<dt class="col-sm-3">Euismod</dt>
<dd class="col-sm-9">
<p>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</p>
<p>Donec id elit non mi porta gravida at eget metus.</p>
</dd>
<dt class="col-sm-3">Malesuada porta</dt>
<dd class="col-sm-9">Etiam porta sem malesuada magna mollis euismod.</dd>
<dt class="col-sm-3 text-truncate">Truncated term is truncated</dt>
<dd class="col-sm-9">Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
<dt class="col-sm-3">Nesting</dt>
<dd class="col-sm-9">
<dl class="row">
<dt class="col-sm-4">Nested definition list</dt>
<dd class="col-sm-8">Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc.</dd>
</dl>
</dd>
</dl>
<div class="row px-5">
<div class="col-12">
<h3 class="mt-5">Background colors</h3>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-primary text-white">.bg-primary</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-secondary text-white">.bg-secondary</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-success text-white">.bg-success</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-danger text-white">.bg-danger</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-warning text-dark">.bg-warning</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-info text-white">.bg-info</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-light text-dark">.bg-light</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-dark text-white">.bg-dark</div>
</div>
<div class="col-md-4">
<div class="p-3 mb-2 bg-white text-dark">.bg-white</div>
</div>
</div>
</div>
</div>
</section>
<section class="mb-5 pt-5" id="images">
<div class="row bg-light py-4 mb-5">
<div class="container">
<div class="d-flex justify-content-between">
<h2>
<span class="fa fa-picture-o mr-1"></span>
Images
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.5/content/images/"
data-toggle="tooltip" data-placement="bottom" title="Image docs"><span class="fa fa-book fw"></span></a>
<a href="https://getbootstrap.com/docs/4.5/content/figures/"
data-toggle="tooltip" data-placement="bottom" title="Figure docs"><span class="fa fa-book fw"></span></a>
<a href="https://getbootstrap.com/docs/4.5/layout/media-object/"
data-toggle="tooltip" data-placement="bottom" title="Media object docs"><span class="fa fa-book fw"></span></a>
<a href="#top" class="ml-3"><span class="fa fa-chevron-up fw"></span></a>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="row px-5">
<div class="col-12">
<h3 class="mt-5">Responsive image</h3>
<img data-src="holder.js/100px250" alt="responsive image" class="img-fluid">
</div>
<div class="col-md-6">
<h3 class="mt-5">Thumbnail</h3>
<img src="holder.js/200x200" alt="thumbnail image" class="img-thumbnail">
</div>
<div class="col-md-6">
<h3 class="mt-5">Figure</h3>
<figure class="figure">
<img data-src="holder.js/300x200" class="figure-img img-fluid rounded" alt="Figure">
<figcaption class="figure-caption">A caption for the above image.</figcaption>
</figure>
</div>
<div class="col-12">
<h3 class="mt-5">Media</h3>
<div class="media">
<img class="d-flex mr-3" src="holder.js/64x64" alt="Generic placeholder image">
<div class="media-body">
<h5 class="mt-0">Media heading</h5>
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras purus odio, vestibulum in
vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in
faucibus.
<div class="media mt-3">
<a class="d-flex pr-3" href="#">
<img src="holder.js/64x64" alt="Generic placeholder image">
</a>
<div class="media-body">
<h5 class="mt-0">Media heading</h5>
Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin. Cras purus odio, vestibulum in
vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis
in faucibus.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mb-5 pt-5" id="tables">
<div class="row bg-light py-4 mb-5">
<div class="container">
<div class="d-flex justify-content-between">
<h2>
<span class="fa fa-table mr-1"></span>
Tables
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.5/content/tables/"
data-toggle="tooltip" data-placement="bottom" title="Table docs"><span class="fa fa-book fw"></span></a>
<a href="#top" class="ml-3"><span class="fa fa-chevron-up fw"></span></a>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="row px-5">
<div class="col-md-6">
<h3 class="mt-5">Table</h3>
<table class="table table-bordered table-striped table-hover">
<thead class="">
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<h3 class="mt-5">Inversed table</h3>
<table class="table table-bordered table-striped table-hover table-dark">
<thead class="">
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row px-5">
<div class="col-md-6">
<h3 class="mt-5">Table with colors</h3>
<p><strong>Note: </strong> Use <code>table-*</code> classes.</p>
<table class="table table-hover">
<thead>
<tr>
<th>Type</th>
<th>Column heading</th>
<th>Column heading</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Default</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-active">
<th scope="row">Active</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-primary">
<th scope="row">Primary</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-secondary">
<th scope="row">Secondary</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-success">
<th scope="row">Success</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-danger">
<th scope="row">Danger</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-warning">
<th scope="row">Warning</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-info">
<th scope="row">Info</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-light">
<th scope="row">Light</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="table-dark">
<th scope="row">Dark</th>
<td>Column content</td>
<td>Column content</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<h3 class="mt-5">Inversed table with colors</h3>
<p><strong>Note: </strong> Use <code>bg-*</code> and <code>text-*</code> classes.</p>
<table class="table table-hover table-dark">
<thead>
<tr>
<th>Type</th>
<th>Column heading</th>
<th>Column heading</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Default</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-primary ">
<th scope="row">Primary</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-secondary ">
<th scope="row">Secondary</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-success ">
<th scope="row">Success</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-danger ">
<th scope="row">Danger</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-warning text-dark">
<th scope="row">Warning</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-info ">
<th scope="row">Info</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-light text-dark">
<th scope="row">Light</th>
<td>Column content</td>
<td>Column content</td>
</tr>
<tr class="bg-dark ">
<th scope="row">Dark</th>
<td>Column content</td>
<td>Column content</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row px-5">
<div class="col-md-6">
<h3 class="mt-5">Default header</h3>
<table class="table ">
<thead class="thead-light">
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<h3 class="mt-5">Inversed header</h3>
<table class="table ">
<thead class="thead-dark">
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row px-5">
<div class="col-md-6">
<h3 class="mt-5">Small table</h3>
<table class="table table-sm">
<thead class="">
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section class="mb-5 pt-5" id="list-groups">
<div class="row bg-light py-4 mb-5">
<div class="container">
<div class="d-flex justify-content-between">
<h2>
<span class="fa fa-list-ul mr-1"></span>
List groups
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.5/components/list-group/"
data-toggle="tooltip" data-placement="bottom" title="List group docs"><span class="fa fa-book fw"></span></a>
<a href="#top" class="ml-3"><span class="fa fa-chevron-up fw"></span></a>
</h2>
</div>
</div>
</div>
<div class="container">
<div class="row px-5">
<div class="col-12">
</div>
<div class="col-md-6">
<h3 class="mt-5">...with actions and colors</h3>
<div class="list-group">
<button type="button" class="list-group-item list-group-item-action">This is a regular list group item</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-active" >
This is a(n) active list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-disabled" >
This is a(n) disabled list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-primary" >
This is a(n) primary list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-secondary" >
This is a(n) secondary list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-success" >
This is a(n) success list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-danger" >
This is a(n) danger list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-warning" >
This is a(n) warning list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-info" >
This is a(n) info list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-light" >
This is a(n) light list group item
</button>
<button type="button" class="list-group-item list-group-item-action list-group-item-dark" >
This is a(n) dark list group item
</button>
</div>
</div>
<div class="col-md-6">