-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
2852 lines (2758 loc) · 140 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>
<title>USPTO Bootstrap 4 Theme - Test Page</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Custom built theme - This already includes Bootstrap 4 -->
<link rel="stylesheet" href="assets/css/usptostrap.css" />
<link rel="stylesheet" href="assets/css/uswds-combobox.css" />
<link rel="stylesheet" href="assets/css/uswds-datepicker.css" />
<link rel="stylesheet" href="assets/css/uswds-overrides.css" />
<link rel="stylesheet" href="assets/css/uswds-step-indicator.css" />
<style>
/* demo page css */
body {
background-color: #eee;
}
.main-container {
padding: 0 1rem;
display: flex;
flex-grow: 1;
flex-wrap: nowrap;
}
main {
width: calc(100% - 17rem);
}
@media (max-width: 768px) {
main {
width: 100%;
}
}
main section {
background: white;
border: 2px solid rgba(0, 0, 0, 0.1);
border-radius: 0.25rem;
margin: 2rem 0;
padding: 2rem;
}
</style>
</head>
<body id="page-top">
<section class="banner banner-dark" aria-label="Official government website">
<div class="accordion">
<div class="d-md-none">
<button class="btn accordion-btn" type="button" data-toggle="collapse" data-target="#gov-banner-demo" aria-expanded="false" aria-controls="gov-banner-demo">
<div class="banner-inner">
<img class="banner-header-flag mr-2" src="assets/img/us_flag_small.png" alt="U.S. flag" />
<div class="flex-fill">
<p class="banner-header-text">
An official website of the United States government
<span class="expand-btn">Here’s how you know <i class="material-icons">keyboard_arrow_down</i></span>
</p>
</div>
<span class="close-btn">
<i class="material-icons">close</i>
</span>
</div>
</button>
</div>
<div class="d-none d-md-block">
<div class="banner-inner align-itens-center">
<img class="banner-header-flag mr-2" src="assets/img/us_flag_small.png" alt="U.S. flag" />
<p class="banner-header-text">An official website of the United States government</p>
<button class="btn banner-btn ml-2" type="button" data-toggle="collapse" data-target="#gov-banner-demo" aria-expanded="false" aria-controls="gov-banner-demo">
Here’s how you know
<i class="material-icons">keyboard_arrow_down</i>
</button>
</div>
</div>
<div class="banner-content collapse" id="gov-banner-demo">
<div class="row no-gutters-sm">
<div class="col-md-6 media">
<img class="banner-icon align-self-start" src="assets/img/icon-dot-gov.svg" role="img" alt="Dot gov" />
<div class="media-body">
<p>
<strong>The .gov means it’s official.</strong>
<br />
Federal government websites often end in .gov or .mil. Before sharing sensitive information, make sure you’re on a federal government site.
</p>
</div>
</div>
<div class="col-md-6 media">
<img class="banner-icon align-self-start" src="assets/img/icon-https.svg" role="img" alt="Https" />
<div class="media-body">
<p>
<strong>The site is secure.</strong>
<br />
The <strong>https://</strong> ensures that you are connecting to the official website and that any information you provide is encrypted and transmitted securely.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<header id="global-header">
<div class="uspto-header-top">
<nav class="navbar navbar-expand-lg navbar-dark">
<a href="https://www.uspto.gov" target="_blank" class="uspto-logo" title="United States Patent and Trademark Office - An Agency of the Department of Commerce">
<span class="sr-only"> United States Patent and Trademark Office </span>
</a>
<div class="ml-auto d-flex">
<!-- Dynamic menu zone -->
<!-- Do not customize this area -->
<div class="display-inline dyn-menuarea">
<!-- Patents -->
<div class="btn-group">
<button type="button" class="btn btn-default ex-btn-inverse" onclick="location.href = 'https://www.uspto.gov/patent';" aria-haspopup="false" aria-expanded="false">
<span class="btn-text">Patents</span>
<span class="btn-icon"> <span class="uspto-icon-lightbulb"></span></span>
</button>
</div>
<!-- Trademarks -->
<div class="btn-group">
<button type="button" class="btn btn-default ex-btn-inverse" onclick="location.href = 'https://www.uspto.gov/trademark';" aria-haspopup="false" aria-expanded="false">
<span class="btn-text">Trademarks</span>
<span class="btn-icon"> <span class="uspto-icon-trademark"></span></span>
</button>
</div>
<!-- Fees and payment -->
<div class="btn-group">
<button type="button" class="btn btn-default ex-btn-inverse" onclick="location.href = 'https://fees.uspto.gov';" aria-haspopup="false" aria-expanded="false">
<span class="btn-text">Fees and payment</span>
<span class="btn-icon"> <span class="uspto-icon-dollar"></span></span>
</button>
</div>
<!-- Help -->
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle ex-btn-inverse" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="btn-text">Help<span class="caret"></span></span>
<span class="btn-icon"> <span class="uspto-icon-question-circle"></span></span>
</button>
<ul class="dropdown-menu dropdown-menu-right">
<li>
<a
href="https://www.uspto.gov/learning-resources"
target="_blank"
data-event-category="myuspto Header: Help menu"
data-event-action="myuspto menu link clicked"
data-event-label="FAQs"
>FAQs</a
>
</li>
<li>
<a
href="https://www.uspto.gov/about-us/contact-us"
target="_blank"
data-event-category="myuspto Header: Help menu"
data-event-action="myuspto menu link clicked"
data-event-label="Contact us"
>Contact us</a
>
</li>
</ul>
</div>
</div>
<!-- /End dynamic menu zone -->
<!-- Sign-in/user menu -->
<!-- MyUSPTO Link -->
<div class="btn-group">
<a class="btn btn-default ex-btn-inverse my-link" href="https://my.uspto.gov">
<span class="btn-text">MyUSPTO</span>
<span class="btn-icon"> <span class="uspto-icon-myuspto"></span></span>
</a>
</div>
<div class="btn-group">
<!--
The code snippet for the .btn-group below will need to
be conditionally displayed when the user is signed in
and it's appropriate to show account information.
-->
<!-- BEGIN USER DROPDOWN MENU -->
<button type="button" class="btn btn-default dropdown-toggle ex-btn-inverse user-link" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="btn-text">John Doe<span class="caret"></span></span>
<span class="btn-icon"> <span class="uspto-icon-user"></span></span>
</button>
<ul class="dropdown-menu dropdown-menu-right">
<li>
<a href="https://my.uspto.gov"> <span class="uspto-icon-home"></span> MyUSPTO<span class="sr-only">console</span></a>
</li>
<li>
<a href="https://account.uspto.gov">
<span class="uspto-icon-user-white"></span>
<span class="sr-only">Manage your</span>Account</a
>
</li>
<li>
<a href="https://my.uspto.gov/signout"> <span class="uspto-icon-sign-out"></span> Sign out</a>
</li>
</ul>
<!-- END USER DROPDOWN MENU -->
<!--<a href="" class="btn btn-default user-link">Sign in</a>-->
<!--
The code snippet for the .btn-group below will need to
be conditionally displayed when it's appropriate to show
the "Sign in" button.
-->
<!-- BEGIN SIGN IN BUTTON TO OPEN SIGN-IN WIDGET-->
<!-- <button
class="btn btn-default ex-btn-inverse user-link"
type="button"
onclick="SIW.init({type:'modal'});">Sign in</button>-->
<!-- END SIGN IN BUTTON TO OPEN SIGN-IN WIDGET-->
</div>
</div>
<!-- /.pull-right -->
</nav>
</div>
<div class="uspto-header-middle">
<div class="flex-fill">
<a class="navbar-brand" href="{{ relativeRoot }}{{ links.home }}" title="USPTO UI Design Library Home"> USPTO <span class="font-weight-light">Theme</span> </a>
</div>
<div class="nav-collapse-section">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
<div class="uspto-header-bottom">
<nav class="navbar navbar-expand-md navbar-dark" aria-label="header sub navigation">
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#!">Active Navigation</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#!">Navigation</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink1" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Navigation </a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink1">
<li>
<a class="dropdown-item" href="#">Action</a>
</li>
<li>
<a class="dropdown-item" href="#">Another action</a>
</li>
<li>
<a class="dropdown-item" href="#">Something else here</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#!">Disabled</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> My Navigation </a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li>
<a class="dropdown-item" href="#">Action</a>
</li>
<li>
<a class="dropdown-item" href="#">Another action</a>
</li>
<li>
<a class="dropdown-item" href="#">Something else here</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#!">FAQ</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<div class="main-container">
<div class="d-none d-sm-none d-md-block">
<nav aria-label="Secondary navigation">
<ul class="sidenav">
<li>
<a href="#accordionExample">Accordion</a>
</li>
<li>
<a href="#alertExample">Alert</a>
</li>
<li>
<a href="#badgeExample">Badge</a>
</li>
<li>
<a href="#breadcrumbExample">Breadcrumb</a>
</li>
<li>
<a href="#buttonExample">Button & Group</a>
</li>
<li>
<a href="#buttonOutlineExample">Button Outline</a>
</li>
<li>
<a href="#cardExample">Card</a>
</li>
<li>
<a href="#carouselExample">Carousel</a>
</li>
<li>
<a href="#formExample-input">Form Controls -- Input</a>
</li>
<li>
<a href="#formExample">Form Controls & Type</a>
</li>
<li>
<a href="#headingExample">Heading</a>
</li>
<li>
<a href="#iconsExample">Material icons</a>
</li>
<li>
<a href="#multistepNavigation">Multi-step navigation</a>
</li>
<li>
<a href="#jumbotronExample">Jumbotron</a>
</li>
<li>
<a href="#listExample">List & Group</a>
</li>
<li>
<a href="#modalExample">Modal</a>
</li>
<li>
<a href="#paginationExample">Pagination</a>
</li>
<li>
<a href="#popoverExample">Popover</a>
</li>
<li>
<a href="#processList">Process list</a>
</li>
<li>
<a href="#progressExample">Progress</a>
</li>
<li>
<a href="#scrollbarExample">Scrollbar</a>
</li>
<li>
<a href="#siteAlertExample">Site alert</a>
</li>
<li>
<a href="#stepIndicatorExample">Step indicator</a>
</li>
<li>
<a href="#summaryBoxExample">Summary box</a>
</li>
<li>
<a href="#tableExample">Table</a>
</li>
<li>
<a href="#tabsExample">Tabs</a>
</li>
<li>
<a href="#tooltipExample">Tooltip</a>
</li>
<li>
<a href="#typographyExample">Typography</a>
</li>
</ul>
</nav>
</div>
<main>
<h1 class="mt-3">Theme Examples</h1>
<section class="mt-3" id="accordionExample">
<h2>Accordion with right icon</h2>
<div class="row">
<div class="col-lg-6">
<div class="accordion">
<div class="card card-borderless">
<div class="card-header" id="heading-1">
<h3 class="accordion-heading icon-right">
<button class="btn btn-light btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse-1" aria-expanded="true" aria-controls="collapse-1">
Collapsible Group Item #1 Collapsible Group Item #1 Collapsible Group Item #1
<i class="material-icons collapsed-icon">add</i>
<i class="material-icons expanded-icon">remove</i>
</button>
</h3>
</div>
<div id="collapse-1" class="collapse show" aria-labelledby="heading-1">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card card-borderless">
<div class="card-header" id="heading-2">
<h3 class="accordion-heading icon-right">
<button class="btn btn-light btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapse-2" aria-expanded="false" aria-controls="collapse-2">
Collapsible Group Item #2
<i class="material-icons collapsed-icon">add</i>
<i class="material-icons expanded-icon">remove</i>
</button>
</h3>
</div>
<div id="collapse-2" class="collapse" aria-labelledby="heading-2">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card card-borderless">
<div class="card-header" id="heading-3">
<h3 class="accordion-heading icon-right">
<button class="btn btn-light btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapse-3" aria-expanded="false" aria-controls="collapse-3">
Collapsible Group Item #3
<i class="material-icons collapsed-icon">add</i>
<i class="material-icons expanded-icon">remove</i>
</button>
</h3>
</div>
<div id="collapse-3" class="collapse" aria-labelledby="heading-3">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-2 mt-lg-0">
<div class="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h3 class="accordion-heading icon-right">
<button class="btn btn-light btn-block text-left" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Collapsible Group Item #1
<i class="material-icons collapsed-icon">add</i>
<i class="material-icons expanded-icon">remove</i>
</button>
</h3>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h3 class="accordion-heading icon-right">
<button class="btn btn-light btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Collapsible Group Item #2
<i class="material-icons collapsed-icon">add</i>
<i class="material-icons expanded-icon">remove</i>
</button>
</h3>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h3 class="accordion-heading icon-right">
<button class="btn btn-light btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Collapsible Group Item #3
<i class="material-icons collapsed-icon">add</i>
<i class="material-icons expanded-icon">remove</i>
</button>
</h3>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
</div>
</div>
<h2 class="mt-3">Accordion with left icon</h2>
<div class="row">
<div class="col-lg-6">
<div class="accordion">
<div class="card card-borderless">
<div class="card-header" id="heading-13">
<h3 class="accordion-heading">
<button class="btn btn-light btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse-13" aria-expanded="true" aria-controls="collapse-13">
<i class="material-icons collapsed-icon">chevron_right</i>
<i class="material-icons expanded-icon">expand_more</i>
Collapsible Group Item #13
</button>
</h3>
</div>
<div id="collapse-13" class="collapse show" aria-labelledby="heading-13">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card card-borderless">
<div class="card-header" id="heading-14">
<h3 class="accordion-heading">
<button class="btn btn-light btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapse-2" aria-expanded="false" aria-controls="collapse-14">
<i class="material-icons collapsed-icon">chevron_right</i>
<i class="material-icons expanded-icon">expand_more</i>
Collapsible Group Item #14
</button>
</h3>
</div>
<div id="collapse-14" class="collapse" aria-labelledby="heading-14">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-2 mt-lg-0">
<div class="accordion">
<div class="card">
<div class="card-header" id="heading-15">
<h3 class="accordion-heading">
<button class="btn btn-light btn-block text-left" type="button" data-toggle="collapse" data-target="#collapse-15" aria-expanded="true" aria-controls="collapse-15">
<i class="material-icons collapsed-icon">chevron_right</i>
<i class="material-icons expanded-icon">expand_more</i>
Collapsible Group Item #15
</button>
</h3>
</div>
<div id="collapse-15" class="collapse show" aria-labelledby="heading-15">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading-16">
<h3 class="accordion-heading">
<button class="btn btn-light btn-block text-left collapsed" type="button" data-toggle="collapse" data-target="#collapse-16" aria-expanded="false" aria-controls="collapse-16">
<i class="material-icons collapsed-icon">chevron_right</i>
<i class="material-icons expanded-icon">expand_more</i>
Collapsible Group Item #16
</button>
</h3>
</div>
<div id="collapse-16" class="collapse" aria-labelledby="heading-16">
<div class="card-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa
nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origen coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft
beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt
you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mt-3" id="alertExample">
<h2>Alert</h2>
<h3>Standard alerts</h3>
<div class="row">
<div class="col-lg-6">
<!--Alerts-->
<div class="mb-2 alert alert-info" role="alert">
<div class="alert-icon">
<i class="material-icons">info</i>
</div>
<div>
<h4 class="alert-heading">Use appropriate heading level</h4>
This is a info alert with <a href="#" class="alert-link">an example link</a>.
</div>
</div>
<div class="mb-2 alert alert-warning" role="alert">
<div class="alert-icon">
<i class="material-icons">warning</i>
</div>
<div>This is a warning alert with <a href="#" class="alert-link">an example link</a>.</div>
</div>
<div class="mb-2 alert alert-success" role="alert">
<div class="alert-icon">
<i class="material-icons">check_circle</i>
</div>
<div>This is a success alert with <a href="#" class="alert-link">an example link</a>.</div>
</div>
<div class="mb-2 alert alert-danger" role="alert">
<div class="alert-icon">
<i class="material-icons">error</i>
</div>
<div>This is a danger alert with <a href="#" class="alert-link">an example link</a>.</div>
</div>
<h3>Slim alerts</h3>
<div class="mb-2 alert alert-info alert-sm" role="alert">
<div class="alert-icon">
<i class="material-icons">info</i>
</div>
<div>This is a small info alert with <a href="#" class="alert-link">an example link</a>.</div>
</div>
<h3>Alerts with no icons</h3>
<div class="mb-2 alert alert-info" role="alert">
<div>This is a info regular alert with <a href="#" class="alert-link">an example link</a>.</div>
</div>
<div class="mb-2 alert alert-info alert-sm" role="alert">
<div>This is a info slim alert with <a href="#" class="alert-link">an example link</a>.</div>
</div>
</div>
<div class="col-lg-6">
<div class="mb-2 alert alert-primary" role="alert">
<div class="alert-icon">
<i class="material-icons">info</i>
</div>
<div>
<h4 class="alert-heading">Use appropriate heading level</h4>
This is a primary alert with <a href="#" class="alert-link">an example link</a>.
</div>
</div>
</div>
<div class="col-lg-12">
<h3 class="mt-4">Inline informational alerts</h3>
<div class="mb-2 alert alert-info inline" role="alert">
<div>
<h4 class="alert-heading">Information</h4>
This is an inline informational message with <a href="#" class="alert-link">an example link</a>.
</div>
</div>
<div class="mb-2 alert alert-success inline" role="alert">
<div>
<h4 class="alert-heading">Success</h4>
This is an inline informational message with <a href="#" class="alert-link">an example link</a>.
</div>
</div>
<div class="mb-2 alert alert-warning inline" role="alert">
<div>
<h4 class="alert-heading">Warning</h4>
This is an inline informational message with <a href="#" class="alert-link">an example link</a>.
</div>
</div>
<div class="mb-2 alert alert-danger inline" role="alert">
<div>
<h4 class="alert-heading">Danger</h4>
This is an inline informational message with <a href="#" class="alert-link">an example link</a>.
</div>
</div>
</div>
</div>
</section>
<section class="mt-3" id="badgeExample">
<h2>Badges</h2>
<h3>Contextual variations</h3>
<!--Badges-->
<span class="badge badge-primary">Primary</span>
<span class="badge badge-secondary">Secondary</span>
<span class="badge badge-success">Success</span>
<span class="badge badge-danger">Danger</span>
<span class="badge badge-warning">Warning</span>
<span class="badge badge-info">Info</span>
<span class="badge badge-light">Light</span>
<span class="badge badge-dark">Dark</span>
<br /><br />
<h3>Pill badges</h3>
<span class="badge badge-pill badge-primary">Primary</span>
<span class="badge badge-pill badge-secondary">Secondary</span>
<span class="badge badge-pill badge-success">Success</span>
<span class="badge badge-pill badge-danger">Danger</span>
<span class="badge badge-pill badge-warning">Warning</span>
<span class="badge badge-pill badge-info">Info</span>
<span class="badge badge-pill badge-light">Light</span>
<span class="badge badge-pill badge-dark">Dark</span>
<br /><br />
<h3>Links badges</h3>
<a href="#" class="badge badge-primary">Primary</a>
<a href="#" class="badge badge-secondary">Secondary</a>
<a href="#" class="badge badge-success">Success</a>
<a href="#" class="badge badge-danger">Danger</a>
<a href="#" class="badge badge-warning">Warning</a>
<a href="#" class="badge badge-info">Info</a>
<a href="#" class="badge badge-light">Light</a>
<a href="#" class="badge badge-dark">Dark</a>
<br /><br />
<h3>Subtle badges</h3>
<span class="badge badge-subtle-primary">Primary</span>
<span class="badge badge-subtle-secondary">Secondary</span>
<span class="badge badge-subtle-success">Success</span>
<span class="badge badge-subtle-danger">Danger</span>
<span class="badge badge-subtle-warning">Warning</span>
<span class="badge badge-subtle-info">Info</span>
<span class="badge badge-subtle-light">Light</span>
<span class="badge badge-subtle-dark">Dark</span>
</section>
<section class="mt-3" id="breadcrumbExample">
<h2>Default Breadcrumb</h2>
<nav aria-label="breadcrumb" role="navigation">
<ol class="breadcrumb mt-2">
<li class="breadcrumb-item">
<a href="#">Home</a>
</li>
<li class="breadcrumb-item">
<a href="#">Library</a>
</li>
<li class="breadcrumb-item">
<a href="#">Long list of item</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Another long list of item</li>
</ol>
</nav>
<h2>Wrapping Breadcrumb</h2>
<nav aria-label="breadcrumb" role="navigation">
<ol class="breadcrumb breadcrumb-wrap mt-2">
<li class="breadcrumb-item">
<a href="#">Home</a>
</li>
<li class="breadcrumb-item">
<a href="#">Library</a>
</li>
<li class="breadcrumb-item">
<a href="#">Long list of item</a>
</li>
<li class="breadcrumb-item active" aria-current="page">Another long list of item</li>
</ol>
</nav>
</section>
<section class="mt-3" id="buttonExample">
<h2>Button & Groups</h2>
<div class="row">
<div class="col-12 col-md-9">
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-info">Info</button>
<div class="mt-3">
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
</div>
<div class="mt-3">
<p>Disabled buttons</p>
<button type="button" class="btn btn-primary" disabled>Disabled</button>
<button type="button" class="btn btn-link" disabled>Disabled</button>
</div>
<div class="mt-3">
<p>Large buttons</p>
<button type="button" class="btn btn-primary btn-lg">Large</button>
<button type="button" class="btn btn-link btn-lg">Link</button>
</div>
<div class="btn-group mt-3" role="group" aria-label="Basic example">
<button type="button" class="btn btn-primary">Left</button>
<button type="button" class="btn btn-outline-primary">Middle</button>
<button type="button" class="btn btn-outline-primary">Right</button>
</div>
<div class="btn-group mt-3" role="group" aria-label="Basic example">
<button type="button" class="btn btn-secondary active">Left</button>
<button type="button" class="btn btn-secondary">Middle</button>
<button type="button" class="btn btn-secondary">Right</button>
</div>
<div class="mt-3">
<p>Button with icon</p>
<button class="btn btn-secondary btn-sm md-icon" type="button">
<i class="material-icons">search</i>
<span class="btn-text">Search</span>
</button>
<button class="btn btn-secondary md-icon" type="button">
<i class="material-icons">search</i>
<span class="btn-text">Search</span>
</button>
<button class="btn btn-secondary btn-lg md-icon" type="button">
<i class="material-icons">search</i>
<span class="btn-text">Search</span>
</button>
</div>
<div class="mt-3">
<p>Button icons only --solid</p>
<button class="btn btn-secondary btn-sm md-icon" type="button">
<i class="material-icons">search</i>
<span class="sr-only">Search</span>
</button>
<button class="btn btn-secondary md-icon" type="button">
<i class="material-icons">search</i>
<span class="sr-only">Search</span>
</button>
<button class="btn btn-secondary btn-lg md-icon" type="button">
<i class="material-icons">search</i>
<span class="sr-only">Search</span>
</button>
</div>
<div class="mt-3">
<p>Button icons only</p>
<button class="btn btn-icon-only-success btn-sm md-icon" type="button">
<i class="material-icons">search</i>
<span class="sr-only">Search</span>
</button>
<button class="btn btn-icon-only-secondary md-icon" type="button">
<i class="material-icons">search</i>
<span class="sr-only">Search</span>
</button>
<button class="btn btn-icon-only-danger btn-lg md-icon" type="button">
<i class="material-icons">search</i>
<span class="sr-only">Search</span>
</button>
</div>
</div>
<div class="col-12 col-md-3">
<div class="btn-group-vertical" role="group" aria-label="Vertical button group">
<button type="button" class="btn btn-secondary">Button</button>
<button type="button" class="btn btn-secondary">Button</button>
<button type="button" class="btn btn-secondary">Button</button>
<button type="button" class="btn btn-secondary">Button</button>
<button type="button" class="btn btn-secondary">Button</button>
<button type="button" class="btn btn-secondary">Button</button>
</div>
</div>
</div>
</section>
<section class="mt-3" id="buttonOutlineExample">
<h2>Button outline</h2>
<div class="row">
<div class="col-12">
<!--Outline Buttons-->
<div class="mt-3">
<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-primary" disabled>Disabled</button>
</div>
</div>
<div class="col-12">
<div class="mt-3">
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-outline-success">Success</button>
<button type="button" class="btn btn-outline-danger">Danger</button>
<button type="button" class="btn btn-outline-warning">Warning</button>
<button type="button" class="btn btn-outline-info">Info</button>
<button type="button" class="btn btn-outline-dark">Dark</button>
</div>
</div>
</div>
<div class="row mt-3">
<div class="col-12">
<div class="p-2 bg-dark">
<button type="button" class="btn btn-outline-light">Light</button>
</div>
</div>
</div>
</section>
<section class="mt-3" id="cardExample">
<h2>Card</h2>
<div class="row">
<div class="col-lg-6">
<h3>Standard layout</h3>
<div class="card mb-2">
<div class="card-body">
<h5 class="card-title">Card title1</h5>
<h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link">Card link</a>
<a href="#" class="card-link">Another link</a>
</div>
<div class="card-footer">
<button class="btn btn-primary">Button in footer</button>
</div>
</div>
<div class="card mb-3">
<div class="row no-gutters">
<div class="col-md-4">
<img class="card-img" src="assets/img/photo-1579800070193-abe62433f737.jpg" />
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text">
<small class="text-muted">Last updated 3 mins ago</small>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-2">
<div class="card-body">
<h2 class="card-title">Card Title -USWDS</h2>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer border-top-0">
<button class="btn btn-primary">Button in footer</button>
</div>
</div>
<div class="card mb-2">
<img class="card-img-top" src="assets/img/photo-1579800070193-abe62433f737.jpg" />
<div class="card-body">
<h2 class="card-title">Card Title -USWDS</h2>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer border-top-0">
<button class="btn btn-primary">Button in footer</button>
</div>
</div>
</div>
<div class="col-lg-6">
<h3>Optional layout</h3>
<div class="card text-white bg-primary mb-2">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Primary card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="card text-white bg-success mb-2 d-inline-block">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Success card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="card bg-warning mb-2">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Warning card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="card text-white bg-info mb-2">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Info card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="card bg-light mb-2">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Light card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="card text-white bg-dark mb-2">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Dark card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
<div class="card text-white bg-secondary mb-2">
<div class="card-header">Header</div>
<div class="card-body">