-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
4164 lines (4146 loc) · 233 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>Fluid Bootstrap 4 Theme</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="css/demo.css">
<link rel="stylesheet" href="css/fluid-bootstrap.css">
</head>
<body data-spy="scroll" data-target="#my-navbar" data-offset="100">
<nav id="navbarToggle" class="navbar navbar-primary navbar-expand-sm collapse show">
<a class="navbar-brand collapsed" href="#top" data-toggle="collapse" data-target="#navbarBrandToggle" aria-controls="navbarBrandToggle"
aria-expanded="true" aria-label="Toggle product navigation">
<i class="icon fa fa-cube"></i>
<div style="line-height: 1.15">Fluid<br />Bootstrap</div>
</a>
<div id="navbarBrandToggle" class="brand-menu collapse">
<span class="dropdown-header">Your Services</span>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 1</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 2</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 3</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 4</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 5</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 6</a>
<span class="dropdown-header">All Services</span>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 1</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 2</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 3</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 4</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 5</a>
<a class="dropdown-item"><i class="icon fa fa-cube"></i>Product 6</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggle" aria-controls="navbarToggle"
aria-expanded="true" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="my-navbar">
<div class="navbar-nav collapsed" data-toggle="collapse" data-target="#navbarItemsToggle" aria-controls="navbarToggle"
aria-expanded="false" aria-label="Toggle navigation items">
<div class="nav-item dropdown" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Resources">
<a class="nav-link">
<span class="icon fa fa-book status-icon status-info"></span>
Resources
</a>
<a class="dropdown-toggle" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false"></a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>
</div>
<div id="navbarItemsToggle" class="navbar-nav collapse">
<a class="nav-item nav-link status status-success" href="https://getbootstrap.com/docs/4.3/" target="_blank" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Bootstrap Documentation">
<span class="icon"></span>
Bootstrap Documentation
</a>
<a class="nav-item nav-link status status-success" href="https://developer.snapappointments.com/bootstrap-select/" target="_blank" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Bootstrap-Select">
<span class="icon"></span>
Bootstrap-Select
</a>
<a class="nav-item nav-link status status-warning" href="https://fontawesome.com/v4.7.0/" target="_blank" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Font Awesome 4.7">
<span class="icon"></span>
Font Awesome 4.7
</a>
<a class="nav-item nav-link status status-danger" href="https://fontello.com/" target="_blank" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Fontello">
<span class="icon"></span>
Fontello
</a>
<a class="nav-item nav-link status status-danger" href="https://productdesign.hortonworks.com/" target="_blank" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Product Design Home">
<span class="icon"></span>
Product Design Home
</a>
</div>
<div class="navbar-nav">
<a class="nav-item nav-link" href="#layout" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Layout">
<span class="icon fa fa-th-large"></span>
Layout
</a>
<a class="nav-item nav-link" href="#cards" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Panels">
<span class="icon fa fa-id-card"></span>
Panels
</a>
<a class="nav-item nav-link" href="#typography" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Typography">
<span class="icon fa fa-text-height"></span>
Typography
</a>
<a class="nav-item nav-link" href="#iconography" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Iconography">
<span class="icon fa fa-cube"></span>
Iconography
</a>
<a class="nav-item nav-link" href="#colors" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Colors">
<span class="icon fa fa-eyedropper"></span>
Colors
</a>
<a class="nav-item nav-link" href="#shadows" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Shadows">
<span class="icon fa fa-adjust"></span>
Shadows
</a>
<a class="nav-item nav-link" href="#accordion" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Accordion">
<span class="icon fa fa-angle-down"></span>
Accordion
</a>
<a class="nav-item nav-link" href="#alerts" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Alerts">
<span class="icon fa fa-bell"></span>
Alerts
</a>
<a class="nav-item nav-link" href="#badges" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Badges">
<span class="icon fa fa-info-circle"></span>
Badges
</a>
<a class="nav-item nav-link" href="#breadcrumbs" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Breadcrumbs">
<span class="icon fa">/</span>
Breadcrumbs
</a>
<a class="nav-item nav-link" href="#buttons" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Buttons">
<span class="icon fa fa-square"></span>
Buttons
</a>
<a class="nav-item nav-link" href="#filter" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Filter">
<span class="icon icon-filter mt-0"></span>
Filter
</a>
<a class="nav-item nav-link" href="#forms" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Forms">
<span class="icon fa fa-pencil"></span>
Forms
</a>
<a class="nav-item nav-link" href="#modals" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Modals">
<span class="icon fa fa-window-restore"></span>
Modals
</a>
<a class="nav-item nav-link" href="#navbar" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Navbar">
<span class="icon fa fa-angle-double-left"></span>
Navbar
</a>
<a class="nav-item nav-link" href="#pagination" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Pagination">
<span class="icon fa fa-file-text"></span>
Pagination
</a>
<a class="nav-item nav-link" href="#popovers" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Popovers & Tooltips">
<span class="icon fa fa-commenting"></span>
Popovers & Tooltips
</a>
<a class="nav-item nav-link" href="#progress" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Progress Indicators">
<span class="icon fa fa-spinner"></span>
Progress Indicators
</a>
<a class="nav-item nav-link" href="#stepper" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Stepper">
<span class="icon fa fa-list-ol"></span>
Stepper
</a>
<a class="nav-item nav-link" href="#tables" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Tables">
<span class="icon fa fa-table"></span>
Tables
</a>
<!-- <a class="nav-item nav-link" href="#dashrows">
<span class="icon fa fa-server fa-flip-horizontal"></span>
Dashrows
</a> -->
<a class="nav-item nav-link" href="#tabs" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Tabs">
<span class="icon fa fa-folder"></span>
Tabs
</a>
<a class="nav-item nav-link" href="#wizard" data-toggle="tooltip" data-placement="right" data-condition="truncated" title="Wizard">
<span class="icon fa fa-magic"></span>
Wizard
</a>
</div>
</div>
</nav>
<nav class="navbar navbar-header fixed-top">
<ol class="breadcrumb"><li class="breadcrumb-item">Fluid Bootstrap 4 Theme Demo Page</li></ol>
<a class="nav-link user-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="user-icon">U</span>Username</a>
<div class="dropdown-menu user-menu" aria-labelledby="navbarDropdown">
<div class="dropdown-header">UI Theme</div>
<div class="palette-selector">
<div class="form-radio">
<input class="form-radio-input" type="radio" name="paletteRadios" id="paletteRadios1" value="hybrid" checked>
<label class="form-radio-label" for="paletteRadios1"><i class="icon icon-contrast"></i>Hybrid</label>
</div>
<div class="form-radio">
<input class="form-radio-input" type="radio" name="paletteRadios" id="paletteRadios2" value="dark">
<label class="form-radio-label" for="paletteRadios2"><i class="icon icon-dark"></i>Dark</label>
</div>
<div class="form-radio">
<input class="form-radio-input" type="radio" name="paletteRadios" id="paletteRadios3" value="accessible">
<label class="form-radio-label" for="paletteRadios3"><i class="icon icon-accessible"></i>Accessible</label>
</div>
</div>
</div>
</nav>
<main id="mainContent">
<div id="alertsTopRight" class="alert-container right"></div>
<div id="alertsTopLeft" class="alert-container"></div>
<div id="alertsBottomRight" class="alert-container bottom right"></div>
<div id="alertsBottomLeft" class="alert-container bottom"></div>
<section id="layout">
<div class="container-fluid">
<div class="row">
<div class="col">
<header class="section-header">
<h2><i class="fa fa-th-large mr-1"></i>Layout</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.3/layout/" target="_blank" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Layout docs"><span class="icon fa fa-book"></span></a>
<a href="#top" class="ml-3"><span class="icon fa fa-angle-double-up"></span></a>
</h2>
</header>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col">
<div class="card">
<div class="card-body">
<h3 class="card-title">Semantics</h3>
<p><a href="https://developer.mozilla.org/en-US/docs/Glossary/Semantics" target="_blank">Semantic</a> markup should be used to structure layouts. The main semantic components in Fluid are:</p>
<ul>
<li>Left navbar - contains primary branding and navigation; represented by a <code><nav class="navbar"></code> tag</li>
<li>Top nav - contains secondary branding and navigation (such as breadcrumbs) and may contain other application level components (i.e. current user info, notifications, etc.); represented by a <code><nav class="fixed-top"></code> tag that is a direct child of the <code><body></code></li>
<li>Main content - contains all other application content; represented by the <code><main></code> tag
<ul>
<li>Sections - use to divide major content areas; represented by <code><section></code> tags
</ul>
</li>
<li>Main footer - may contain tertiary branding/navigation and copyright/legal information, etc.; represented by the last <code><footer></code> tag that is a direct child of the <code><body></code></li>
</ul>
</div>
</div>
</div>
</div>
<div class="row pb-3">
<div class="col">
<div class="card">
<div class="card-body">
<h3 class="card-title">Responsiveness</h3>
<p>FLUID is designed for large screens. Therefore, the minimum width of the entire layout is limited by setting <code>min-width: 1024px</code> on the <code><body></code>, below which a horizontal scrollbar will appear. The maximum width of <code>.container-fluid</code> has been set to 1920px, above which the container will have equal left and right margins to fill up the remaining space. Generally, you should use <code>.container-fluid</code> so that layouts scale fluidly between these extremes. (The default breakpoints for <code>.container</code> have not been changed.)</p>
<p>The main header <code>.navbar</code> is given the modifier classes <code>.navbar-header</code> and <code>.fixed-top</code>, while the main footer <code>.navbar</code> is given <code>.navbar-footer</code>. These elements should not be placed inside any container so that they can stretch to the full width of the window.</p>
<p>Observe the behavior of the example containers below and the header/footer on this page as you change the width of the window to understand the desired behavior.</p>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col display-4 text-center">
<div>Document Width:</div>
<div id="documentWidth"></div>
</div>
</div>
</div>
<div class="container bg-light mb-3 p-5" id="containerExample">
<div class="row">
<div class="col display-4 text-center">
<div>.container width:</div>
<div id="containerWidth"></div>
</div>
</div>
</div>
<div class="container-fluid bg-light p-5" id="containerFluidExample">
<div class="row">
<div class="col display-4 text-center">
<div>.container-fluid width:</div>
<div id="containerFluidWidth"></div>
</div>
</div>
</div>
</section>
<section id="cards">
<div class="container-fluid">
<div class="row">
<div class="col">
<header class="section-header">
<h2>
<span class="icon fa fa-id-card mr-1"></span>
Panels
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.3/components/card/" target="_blank" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="Card docs"><span class="icon fa fa-book"></span></a>
<a href="#top" class="ml-3"><span class="icon fa fa-angle-double-up"></span></a>
</h2>
</header>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col">
<div class="card">
<div class="card-body">
<h3 class="card-title">Usage</h3>
<p>Panels are a concept in Fluid that is implemented using Bootstrap Cards. All content should be contained in panels. You should usually not need to use <code>.card-header</code> and should generally use <code>.card-title</code> and <code>.card-text</code> within the <code>.card-body</code> to achieve the consistent layout required by Fluid. Use <code>.card-footer</code> to keep footer elements, including buttons and links, at the bottom of the card even if its height increases.</p>
<p>You are encouraged to make use of the available <a href="https://getbootstrap.com/docs/4.3/components/card/#card-layout" target="_blank">card layout utilities</a> to control the placement of Panels. This will allow you to achieve horizontal and/or flowing layouts. When you just need a series of full-width panels, simply place one <code>.card</code> after another in your markup. You can also use an <a href="#accordion">accordion</a> to group panels.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3><code>.card-columns</code> Example</h3>
<div class="card-columns">
<div class="card">
<div class="card-body">
This is some text within a card block.
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<h4 class="card-subtitle">Card with subtitle</h6>
<p class="card-text">You're going to be an interesting companion, Mr. Data. I'll alert the crew. The look in your eyes, I recognize it. You used to have it for me. The Federation's gone; the Borg is everywhere! When has justice ever been as simple as a rule book?</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<p class="card-text">I'll alert the crew. You're going to be an interesting companion, Mr. Data. I've had twelve years to think about it. And if I had it to do over again, I would have grabbed the phaser and pointed it at you instead of them. For an android with no feelings, he sure managed to evoke them in others. I am your worst nightmare! A lot of things can change in twelve years, Admiral. You did exactly what you had to do. You considered all your options, you tried every alternative and then you made the hard choice. Besides, you look good in a dress. Computer, belay that order. Mr. Worf, you sound like a man who's asking his friend if he can start dating his sister.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<p class="card-text">Yes, absolutely, I do indeed concur, wholeheartedly! Mr. Worf, you sound like a man who's asking his friend if he can start dating his sister. Not if I weaken first. Ensign Babyface! A surprise party? Mr. Worf, I hate surprise parties. I would *never* do that to you. Sorry, Data. Now, how the hell do we defeat an enemy that knows us better than we know ourselves? Captain, why are we out here chasing comets? Our neural pathways have become accustomed to your sensory input patterns. The look in your eyes, I recognize it. You used to have it for me. I can't. As much as I care about you, my first duty is to the ship. Sure. You'd be surprised how far a hug goes with Geordi, or Worf. Computer, belay that order. What's a knock-out like you doing in a computer-generated gin joint like this? This should be interesting. The unexpected is our normal routine. I'd like to think that I haven't changed those things, sir. We know you're dealing in stolen ore. But I wanna talk about the assassination attempt on Lieutenant Worf. We could cause a diplomatic crisis. Take the ship into the Neutral Zone Shields up! Rrrrred alert! Flair is what marks the difference between artistry and mere competence. When has justice ever been as simple as a rule book? In all trust, there is the possibility for betrayal. For an android with no feelings, he sure managed to evoke them in others.</p>
</div>
</div>
<div class="card">
<div class="card-header">Card header</div>
<div class="card-body">
<h4 class="card-title">Card title</h4>
<p class="card-text">I recommend you don't fire until you're within 40,000 kilometers. Congratulations - you just destroyed the Enterprise. We know you're dealing in stolen ore. But I wanna talk about the assassination attempt on Lieutenant Worf. Now we know what they mean by 'advanced' tactical training. Some days you get the bear, and some days the bear gets you. Fear is the true enemy, the only enemy. I'm afraid I still don't understand, sir. Is it my imagination, or have tempers become a little frayed on the ship lately? Mr. Worf, you do remember how to fire phasers? Worf, It's better than music. It's jazz.</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<p class="card-text">We know you're dealing in stolen ore. But I wanna talk about the assassination attempt on Lieutenant Worf. When has justice ever been as simple as a rule book? For an android with no feelings, he sure managed to evoke them in others. A surprise party? Mr. Worf, I hate surprise parties. I would *never* do that to you.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3><code>.card-deck</code> Example</h3>
<div class="card-deck">
<div class="card">
<div class="card-body">
This is some text within a card block.
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<h5 class="card-subtitle">Card with subtitle</h5>
<p class="card-text">You enjoyed that. Fate protects fools, little children and ships named Enterprise. In all trust, there is the possibility for betrayal. Flair is what marks the difference between artistry and mere competence. I am your worst nightmare! You bet I'm agitated! I may be surrounded by insanity, but I am not insane. I will obey your orders. I will serve this ship as First Officer. And in an attack against the Enterprise, I will die with this crew. But I will not break my oath of loyalty to Starfleet.</p>
</div>
<div class="card-footer">
<a href="javascript:void(0);" class="card-link">Card link</a>
<a href="javascript:void(0);" class="card-link">Another link</a>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Card title</h4>
<p class="card-text">Wait a minute - you've been declared dead. You can't give orders around here. Now we know what they mean by 'advanced' tactical training. Commander William Riker of the Starship Enterprise. Your shields were failing, sir. Your head is not an artifact! A surprise party? Mr. Worf, I hate surprise parties. I would *never* do that to you. Shields up! Rrrrred alert! Congratulations - you just destroyed the Enterprise.</p>
</div>
<div class="card-footer">
<a href="javascript:void(0);" class="btn btn-primary">Primary</a>
<a href="javascript:void(0);" class="btn btn-secondary">Secondary</a>
<a href="javascript:void(0);" class="btn btn-default">Button</a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3><code>.card-group</code> Example</h3>
<div class="card-group">
<div class="card">
<img class="card-img-top" src="images/card-group-1.jpg" data-holder-rendered="true" style="height: 180px; width: 100%; display: block;">
<div class="card-body">
<h4 class="card-title">Sunset</h4>
<p class="card-text">That sunset is perfectly lined up with that crazy-shaped tree. It's like a burning bush.</p>
</div>
<div class="card-footer">
<p class="card-text"><small class="text-muted">Last updated yesterday</small></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="images/card-group-2.jpg" data-holder-rendered="true" style="height: 180px; width: 100%; display: block;">
<div class="card-body">
<h4 class="card-title">Butterflies</h4>
<p class="card-text">Thos are some crazy mushrooms. I hope those butterflies know what they're doing.</p>
</div>
<div class="card-footer">
<p class="card-text"><small class="text-muted">Last updated just now</small></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="images/card-group-3.jpg" data-holder-rendered="true" style="height: 180px; width: 100%; display: block;">
<div class="card-body">
<h4 class="card-title">Daisy</h4>
<p class="card-text">Wow, that is some amazing background blur. Looks like the photographer read his camera's manual!</p>
</div>
<div class="card-footer">
<p class="card-text"><small class="text-muted">Last updated 3 minutes ago</small></p>
</div>
</div>
<div class="card">
<img class="card-img-top" src="images/card-group-4.jpg" data-holder-rendered="true" style="height: 180px; width: 100%; display: block;">
<div class="card-body">
<h4 class="card-title">Tracks</h4>
<p class="card-text">Where are these tracks going? Does anybody know? Does anybody care?</p>
</div>
<div class="card-footer">
<p class="card-text"><small class="text-muted">Last updated 1 hour ago</small></p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3>Cards with colored borders</h3>
<div class="card-columns">
<div class="card border border-primary">
<div class="card-body">
<h4 class="card-title">Primary border</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 border border-success">
<div class="card-header">Card header</div>
<div class="card-body">
<h4 class="card-title">Success border</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 border border-warning">
<div class="card-body">
<h4 class="card-title">Warning border</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 border border-danger">
<div class="card-body">
<h4 class="card-title">Danger border</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 border border-info">
<div class="card-body">
<h4 class="card-title">Info border</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 border border-dark">
<div class="card-body">
<h4 class="card-title">Dark border</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>
</div>
</div>
<div class="row">
<div class="col">
<h3>Cards with colored backgrounds</h3>
<div class="card-columns">
<div class="card text-white bg-primary">
<div class="card-body">
<h4 class="card-title">Primary background</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">
<div class="card-header">Card header</div>
<div class="card-body">
<h4 class="card-title">Success background</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-warning">
<div class="card-body">
<h4 class="card-title">Warning background</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-danger">
<div class="card-body">
<h4 class="card-title">Danger background</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">
<div class="card-body">
<h4 class="card-title">Info background</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-light bg-dark">
<div class="card-body">
<h4 class="card-title">Dark background</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>
</div>
</div>
</div>
</section>
<section id="typography">
<div class="container-fluid">
<div class="row">
<div class="col">
<header class="section-header">
<h2>
<span class="icon fa fa-text-height mr-1"></span>
Typography
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.3/content/typography/" target="_blank" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Typography docs"><span class="icon fa fa-book"></span></a>
<a href="https://getbootstrap.com/docs/4.3/content/code/" target="_blank" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Code docs"><span class="icon fa fa-book"></span></a>
<a href="https://getbootstrap.com/docs/4.3/utilities/text/" target="_blank" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Text utility docs"><span class="icon fa fa-book"></span></a>
<a href="#top" class="ml-3"><span class="icon fa fa-angle-double-up"></span></a>
</h2>
</header>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col">
<h3>Font Family</h3>
<div class="card">
<div class="card-body">
Fluid uses <a href="https://fonts.google.com/specimen/Roboto" target="_blank">Roboto</a> for all text.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3>Sizes</h3>
<div class="card-columns">
<div class="card">
<div class="card-body">
<h4 class="card-title">Heading 1</h4>
<div class="h1 text-default">font-size: 28px;</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Heading 2</h4>
<div class="h2 text-default">font-size: 24px;</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Heading 3</h4>
<div class="h3 text-default">font-size: 20px;</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Heading 4</h4>
<div class="h4 text-default">font-size: 16px;</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Heading 5</h4>
<div class="h5 text-default">font-size: 14px;</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Heading 6</h4>
<div class="h6 text-default">font-size: 12px;</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Body Text</h4>
<p>font-size: 14px;</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Small Text</h4>
<p><small>font-size: 13px;</small></p>
<p>Use for tooltips and other fine print.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3>Weights</h3>
<div class="card-deck">
<div class="card">
<div class="card-body">
<h4 class="card-title">Normal</h4>
<div class="specimen border">
<small>Roboto Regular (font-weight: 400)</small>
<p class="h6 text-default">Roboto Regular (font-weight: 400)</p>
<p class="h5 text-default">Roboto Regular (font-weight: 400)</p>
<p class="h4 text-default">Roboto Regular (font-weight: 400)</p>
<p class="h3 text-default">Roboto Light (font-weight: 300)</p>
<p class="h2 text-default">Roboto Light (font-weight: 300)</p>
<p class="h1 text-default">Roboto Light (font-weight: 300)</p>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Bold</h5>
<div class="specimen border">
<small><strong>Roboto Bold (font-weight: 500)</strong></small>
<p class="h6 text-default"><strong>Roboto Bold (font-weight: 500)</strong></p>
<p class="h5 text-default"><strong>Roboto Bold (font-weight: 500)</strong></p>
<p class="h4 text-default"><strong>Roboto Bold (font-weight: 500)</strong></p>
<p class="h3 text-default"><strong>Roboto Bold (font-weight: 500)</strong></p>
<p class="h2 text-default"><strong>Roboto Bold (font-weight: 500)</strong></p>
<p class="h1 text-default"><strong>Roboto Bold (font-weight: 500)</strong></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h3>Colors</h3>
<div class="card-deck">
<div class="card">
<div class="card-body">
<h4 class="card-title">Light Text (color: #5a656d;)</h4>
<h5 class="card-subtitle">On .bg-light</h5>
<div class="bg-light specimen border">
<small class="text-light">small.text-light</small>
<p class="h6 text-light">h6.text-light</p>
<p class="h5 text-light">h5.text-light</p>
<p class="h4 text-light">h4.text-light</p>
<p class="h3 text-light">h3.text-light</p>
<p class="h2 text-light">h2.text-light</p>
<p class="h1 text-light">h1.text-light</p>
</div>
<h5 class="card-subtitle">On .bg-default</h5>
<div class="bg-default specimen border">
<small class="text-light">small.text-light</small>
<p class="h6 text-light">h6.text-light</p>
<p class="h5 text-light">h5.text-light</p>
<p class="h4 text-light">h4.text-light</p>
<p class="h3 text-light">h3.text-light</p>
<p class="h2 text-light">h2.text-light</p>
<p class="h1 text-light">h1.text-light</p>
</div>
<h5 class="card-subtitle">On .bg-dark</h5>
<div class="bg-dark specimen border">
<small class="text-light">small.text-light</small>
<p class="h6 text-light">h6.text-light</p>
<p class="h5 text-light">h5.text-light</p>
<p class="h4 text-light">h4.text-light</p>
<p class="h3 text-light">h3.text-light</p>
<p class="h2 text-light">h2.text-light</p>
<p class="h1 text-light">h1.text-light</p>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Default Text (color: #1b2329;)</h4>
<h5 class="card-subtitle">On .bg-light</h5>
<div class="bg-light specimen border">
<small class="text-default">small.text-default</small>
<p class="h6 text-default">h6.text-default</p>
<p class="h5 text-default">h5.text-default</p>
<p class="h4 text-default">h4.text-default</p>
<p class="h3 text-default">h3.text-default</p>
<p class="h2 text-default">h2.text-default</p>
<p class="h1 text-default">h1.text-default</p>
</div>
<h5 class="card-subtitle">On .bg-default</h5>
<div class="bg-default specimen border">
<small class="text-default">small.text-default</small>
<p class="h6 text-default">h6.text-default</p>
<p class="h5 text-default">h5.text-default</p>
<p class="h4 text-default">h4.text-default</p>
<p class="h3 text-default">h3.text-default</p>
<p class="h2 text-default">h2.text-default</p>
<p class="h1 text-default">h1.text-default</p>
</div>
<h5 class="card-subtitle">On .bg-dark</h5>
<div class="bg-dark specimen border">
<small class="text-default">small.text-default</small>
<p class="h6 text-default">h6.text-default</p>
<p class="h5 text-default">h5.text-default</p>
<p class="h4 text-default">h4.text-default</p>
<p class="h3 text-default">h3.text-default</p>
<p class="h2 text-default">h2.text-default</p>
<p class="h1 text-default">h1.text-default</p>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Dark Text (color: #000000;)</h4>
<h5 class="card-subtitle">On .bg-light</h5>
<div class="bg-light specimen border">
<small class="text-dark">small.text-dark</small>
<p class="h6 text-dark">h6.text-dark</p>
<p class="h5 text-dark">h5.text-dark</p>
<p class="h4 text-dark">h4.text-dark</p>
<p class="h3 text-dark">h3.text-dark</p>
<p class="h2 text-dark">h2.text-dark</p>
<p class="h1 text-dark">h1.text-dark</p>
</div>
<h5 class="card-subtitle">On .bg-default</h5>
<div class="bg-default specimen border">
<small class="text-dark">small.text-dark</small>
<p class="h6 text-dark">h6.text-dark</p>
<p class="h5 text-dark">h5.text-dark</p>
<p class="h4 text-dark">h4.text-dark</p>
<p class="h3 text-dark">h3.text-dark</p>
<p class="h2 text-dark">h2.text-dark</p>
<p class="h1 text-dark">h1.text-dark</p>
</div>
<h5 class="card-subtitle">On .bg-dark</h5>
<div class="bg-dark specimen border">
<small class="text-dark">small.text-dark</small>
<p class="h6 text-dark">h6.text-dark</p>
<p class="h5 text-dark">h5.text-dark</p>
<p class="h4 text-dark">h4.text-dark</p>
<p class="h3 text-dark">h3.text-dark</p>
<p class="h2 text-dark">h2.text-dark</p>
<p class="h1 text-dark">h1.text-dark</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="iconography">
<div class="container-fluid">
<div class="row">
<div class="col">
<header class="section-header">
<h2>
<span class="icon fa fa-cube mr-1"></span>
Iconography
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.3/extend/icons/" target="_blank" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Icon docs"><span class="icon fa fa-book"></span></a>
<a href="#top" class="ml-3"><span class="icon fa fa-angle-double-up"></span></a>
</h2>
</header>
<div class="card-columns">
<div class="card">
<div class="card-body">
<h3 class="card-title">Usage</h3>
<p>Icons that are integral to Fluid are provided in a custom icon font named <code>fluidicons</code>.
<p>Add an icon in HTML as follows: <code><i class="icon <em>icon-class</em>"></i></code> where <code><em>icon-class</em></code> is one of the icon class names in the following lists.</p>
<p>You can also use the ASCII or the Unicode representation with <code>font-family: "fluidicons";</code> in CSS.</p>
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h3 class="card-title">Status Icons</h3>
<p>These icons are used to indicate status and default to the associated status theme color.</p>
<div class="charmap d-flex">
<div>
<strong>.icon-success</strong>
<i class="icon icon-success"></i>
<div>ASCII: <code>+</code></div>
<div>Unicode: <code>\002b</code></div>
</div>
<div>
<strong>.icon-warning</strong>
<i class="icon icon-warning"></i>
<div>ASCII: <code>!</code></div>
<div>Unicode: <code>\0021</code></div>
</div>
<div>
<strong>.icon-danger</strong>
<i class="icon icon-danger"></i>
<div>ASCII: <code>-</code></div>
<div>Unicode: <code>\002d</code></div>
</div>
<div>
<strong>.icon-info</strong>
<i class="icon icon-info"></i>
<div>ASCII: <code>%</code></div>
<div>Unicode: <code>\0025</code></div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h3 class="card-title">Affordance Icons</h3>
<p>These icons are used to indicate available interactions with components.</p>
<div class="charmap">
<div>
<strong>.icon-help</strong>
<i class="icon icon-help"></i>
<div>ASCII: <code>? </code></div>
<div>Unicode: <code>\003f</code></div>
</div>
<div>
<strong>.icon-previous</strong>
<i class="icon icon-previous"></i>
<div>ASCII: <code><</code></div>
<div>Unicode: <code>\003c</code></div>
</div>
<div>
<strong>.icon-next</strong>
<i class="icon icon-next"></i>
<div>ASCII: <code>></code></div>
<div>Unicode: <code>\003e</code></div>
</div>
<div>
<strong>.icon-collapse</strong>
<i class="icon icon-collapse"></i>
<div>ASCII: <code>^</code></div>
<div>Unicode: <code>\005e</code></div>
</div>
<div>
<strong>.icon-expand</strong>
<i class="icon icon-expand"></i>
<div>ASCII: <code>_</code></div>
<div>Unicode: <code>\005f</code></div>
</div>
<div>
<strong>.icon-navbar-collapse</strong>
<i class="icon icon-navbar-collapse"></i>
<div>ASCII: <code>{</code></div>
<div>Unicode: <code>\007b</code></div>
</div>
<div>
<strong>.icon-navbar-expand</strong>
<i class="icon icon-navbar-expand"></i>
<div>ASCII: <code>}</code></div>
<div>Unicode: <code>\007d</code></div>
</div>
<div>
<strong>.icon-filter</strong>
<i class="icon icon-filter"></i>
<div>ASCII: <code>~</code></div>
<div>Unicode: <code>\007e</code></div>
</div>
<div>
<strong>.icon-unsorted</strong>
<i class="icon icon-unsorted"></i>
<div>ASCII: <code>|</code></div>
<div>Unicode: <code>\007c</code></div>
</div>
<div>
<strong>.icon-sort-down</strong>
<i class="icon icon-sort-down"></i>
<div>ASCII: <code>\</code></div>
<div>Unicode: <code>\005c</code></div>
</div>
<div>
<strong>.icon-sort-up</strong>
<i class="icon icon-sort-up"></i>
<div>ASCII: <code>/</code></div>
<div>Unicode: <code>\002f</code></div>
</div>
<div>
<strong>.icon-search</strong>
<i class="icon icon-search"></i>
<div>ASCII: <code>$</code></div>
<div>Unicode: <code>\0024</code></div>
</div>
<div>
<strong>.icon-menu</strong>
<i class="icon icon-menu"></i>
<div>ASCII: <code>:</code></div>
<div>Unicode: <code>\003a</code></div>
</div>
<div>
<strong>.icon-close</strong>
<i class="icon icon-close"></i>
<div>ASCII: <code>*</code></div>
<div>Unicode: <code>\002a</code></div>
</div>
<div>
<strong>.icon-apps</strong>
<i class="icon icon-apps"></i>
<div>ASCII: <code>#</code></div>
<div>Unicode: <code>\0023</code></div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<h3 class="card-title">Additional Icons</h3>
<p>Other icons that you may need for application-specific usage are not included, but we recommend <a href="https://fontawesome.com/v4.7.0/" target="_blank">Font Awesome 4.7</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="colors">
<div class="container-fluid">
<header class="section-header">
<h2>
<span class="icon fa fa-eyedropper mr-1"></span>
Colors
</h2>
<h2>
<a href="https://getbootstrap.com/docs/4.3/utilities/colors/" target="_blank" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="Color utility docs"><span class="icon fa fa-book"></span></a>
<a href="#top" class="ml-3"><span class="icon fa fa-angle-double-up"></span></a>
</h2>
</header>
</div>
<div class="container-fluid">
<div class="row">
<div class="col">
<div class="card">
<div class="card-body">
<h3 class="card-title">Palettes</h4>
<p>FLUID specifies three color palettes: a Hybrid palette featuring a dark navbar and a light content area, a fully Dark palette, and an Accessible palette that ensure accessibility guidelines are followed with regard to color choices. You can switch among these palettes by clicking the user icon in upper right corner to reveal the preferences menu.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card ramp">
<div class="card-body">
<h3 class="card-title">Grays</h3>
<div class="swatch bg-gray-100 text-black">
<div>gray-100</div>
<div>#f1f2f3</div>
</div>
<div class="swatch bg-gray-200 text-black">
<div>gray-200</div>
<div>#e4e5e7</div>
</div>
<div class="swatch bg-gray-300 text-black">
<div>gray-300</div>
<div>#d6d8db</div>
</div>
<div class="swatch bg-gray-400 text-black">
<div>gray-400</div>
<div>#adb2b6</div>
</div>
<div class="swatch bg-gray-500 text-white">
<div>gray-500</div>
<div>#989ea4</div>
</div>
<div class="swatch bg-gray-600 text-white">
<div>gray-600</div>
<div>#838b92</div>
</div>
<div class="swatch bg-gray-700 text-white">
<div>gray-700</div>
<div>#5a656d</div>
</div>
<div class="swatch bg-gray-800 text-white">
<div>gray-800</div>
<div>#333e47</div>
</div>
<div class="swatch bg-gray-850 text-white">
<div>gray-850</div>
<div>#273138</div>
</div>
<div class="swatch bg-gray-900 text-white">
<div>gray-900</div>
<div>#1b2329</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card">
<div class="card-body">
<h3 class="card-title">Gray Usage</h3>
<div class="container">
<div class="row mb-3 mx-0">
<div class="col-3 text-center"></div>
<div class="col-3 text-center"><h4>Hybrid Palette</h4></div>