-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypography.php
1194 lines (1025 loc) · 31.3 KB
/
typography.php
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
<?php
//initilize the page
require_once("inc/init.php");
//require UI configuration (nav, ribbon, etc.)
require_once("inc/config.ui.php");
/*---------------- PHP Custom Scripts ---------
YOU CAN SET CONFIGURATION VARIABLES HERE BEFORE IT GOES TO NAV, RIBBON, ETC.
E.G. $page_title = "Custom Title" */
$page_title = "Typhography";
/* ---------------- END PHP Custom Scripts ------------- */
//include header
//you can add your custom css in $page_css array.
//Note: all css files are inside css/ folder
$page_css[] = "your_style.css";
include("inc/header.php");
?>
<style>
/*
* Examples
*
* Isolated sections of example content for each component or feature. Usually
* followed by a code snippet.
*/
.bs-example {
position: relative;
padding: 15px 15px 15px;
margin: 0 0px 15px;
background-color: #fafafa;
border-color: #e5e5e5 #eee #eee;
border-style: solid;
border-width: 1px;
}
/* Echo out a label for the example */
.bs-example:after {
content: "";
position: absolute;
top: 15px;
left: 15px;
font-size: 12px;
font-weight: bold;
color: #bbb;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Tweak display of the code snippets when following an example */
.bs-example + .highlight {
margin: -15px 0px 15px;
border-radius: 0;
border-width: 0 0 1px;
}
/* Make the examples and snippets not full-width */
@media (min-width: 768px) {
.bs-example {
margin-left: 0;
margin-right: 0;
background-color: #fff;
border-width: 1px;
border-color: #ddd;
border-radius: 4px 4px 0 0;
box-shadow: none;
}
.bs-example + .highlight {
margin-top: -16px;
margin-left: 0;
margin-right: 0;
border-width: 1px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
}
/* Undo width of container */
.bs-example .container {
width: auto;
}
/* Tweak content of examples for optimum awesome */
.bs-example > p:last-child, .bs-example > ul:last-child, .bs-example > ol:last-child, .bs-example > blockquote:last-child, .bs-example > .form-control:last-child, .bs-example > .table:last-child, .bs-example > .navbar:last-child, .bs-example > .jumbotron:last-child, .bs-example > .alert:last-child, .bs-example > .panel:last-child, .bs-example > .list-group:last-child, .bs-example > .well:last-child, .bs-example > .progress:last-child, .bs-example > .table-responsive:last-child > .table {
margin-bottom: 0;
}
.bs-example > p > .close {
float: none;
}
/* Typography */
.bs-example-type .table .info {
color: #999;
vertical-align: middle;
background:none;
}
.bs-example-type .table td {
padding: 15px 0;
border-color: #eee;
vertical-align: top !important;
}
.bs-example-type .table tr:first-child td {
border-top: 0;
vertical-align: top;
}
.bs-example-type h1, .bs-example-type h2, .bs-example-type h3, .bs-example-type h4, .bs-example-type h5, .bs-example-type h6 {
margin-top: 0;
}
/* Images */
.bs-example > .img-circle, .bs-example > .img-rounded, .bs-example > .img-thumbnail {
margin: 5px;
}
/* Tables */
.bs-example > .table-responsive > .table {
background-color: #fff;
}
/* Buttons */
.bs-example > .btn, .bs-example > .btn-group {
margin-top: 5px;
margin-bottom: 5px;
}
.bs-example > .btn-toolbar + .btn-toolbar {
margin-top: 10px;
}
/* Forms */
.bs-example-control-sizing select, .bs-example-control-sizing input[type="text"] + input[type="text"] {
margin-top: 10px;
}
.bs-example-form .input-group {
margin-bottom: 10px;
}
.bs-example > textarea.form-control {
resize: vertical;
}
/* List groups */
.bs-example > .list-group {
max-width: 400px;
}
/* Navbars */
.bs-example .navbar:last-child {
margin-bottom: 0;
}
.bs-navbar-top-example, .bs-navbar-bottom-example {
z-index: 1;
padding: 0;
overflow: hidden; /* cut the drop shadows off */
}
.bs-navbar-top-example .navbar-header, .bs-navbar-bottom-example .navbar-header {
margin-left: 0;
}
.bs-navbar-top-example .navbar-fixed-top, .bs-navbar-bottom-example .navbar-fixed-bottom {
position: relative;
margin-left: 0;
margin-right: 0;
}
.bs-navbar-top-example {
padding-bottom: 45px;
}
.bs-navbar-top-example:after {
top: auto;
bottom: 15px;
}
.bs-navbar-top-example .navbar-fixed-top {
top: -1px;
}
.bs-navbar-bottom-example {
padding-top: 45px;
}
.bs-navbar-bottom-example .navbar-fixed-bottom {
bottom: -1px;
}
.bs-navbar-bottom-example .navbar {
margin-bottom: 0;
}
@media (min-width: 768px) {
.bs-navbar-top-example .navbar-fixed-top, .bs-navbar-bottom-example .navbar-fixed-bottom {
position: absolute;
}
.bs-navbar-top-example {
border-radius: 0 0 4px 4px;
}
.bs-navbar-bottom-example {
border-radius: 4px 4px 0 0;
}
}
/* Pagination */
.bs-example .pagination {
margin-top: 10px;
margin-bottom: 10px;
}
/* Pager */
.bs-example > .pager {
margin-top: 0;
}
/* Example modals */
.bs-example-modal {
background-color: #f5f5f5;
}
.bs-example-modal .modal {
position: relative;
top: auto;
right: auto;
left: auto;
bottom: auto;
z-index: 1;
display: block;
}
.bs-example-modal .modal-dialog {
left: auto;
margin-left: auto;
margin-right: auto;
}
/* Example dropdowns */
.bs-example > .dropdown > .dropdown-menu {
position: static;
display: block;
margin-bottom: 5px;
}
/* Example tabbable tabs */
.bs-example-tabs .nav-tabs {
margin-bottom: 15px;
}
/* Tooltips */
.bs-example-tooltips {
text-align: center;
}
.bs-example-tooltips > .btn {
margin-top: 5px;
margin-bottom: 5px;
}
/* Popovers */
.bs-example-popover {
padding-bottom: 24px;
background-color: #f9f9f9;
}
.bs-example-popover .popover {
position: relative;
display: block;
float: left;
width: 260px;
margin: 20px;
}
/* Scrollspy demo on fixed height div */
.scrollspy-example {
position: relative;
height: 200px;
margin-top: 10px;
overflow: auto;
}
/*
* Code snippets
*
* Generated via Pygments and Jekyll, these are snippets of HTML, CSS, and JS.
*/
.highlight {
display: none; /* hidden by default, until >480px */
padding: 9px 14px;
margin-bottom: 14px;
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
border-radius: 4px;
}
.highlight pre {
padding: 0;
margin-top: 0;
margin-bottom: 0;
background-color: transparent;
border: 0;
white-space: nowrap;
}
.highlight pre code {
font-size: inherit;
color: #333; /* Effectively the base text color */
}
.highlight pre .lineno {
display: inline-block;
width: 22px;
padding-right: 5px;
margin-right: 10px;
text-align: right;
color: #bebec5;
}
/* Show code snippets when we have the space */
@media (min-width: 481px) {
.highlight {
display: block;
}
}
.hll {
background-color: #ffffcc
}
/*{ background: #f0f3f3; }*/
.c {
color: #999;
}/* Comment */
.err {
color: #AA0000;
background-color: #FFAAAA
}/* Error */
.k {
color: #006699;
}/* Keyword */
.o {
color: #555555
}/* Operator */
.cm {
color: #0099FF;
font-style: italic
}/* Comment.Multiline */
.cp {
color: #009999
}/* Comment.Preproc */
.c1 {
color: #999;
}/* Comment.Single */
.cs {
color: #999;
}/* Comment.Special */
.gd {
background-color: #FFCCCC;
border: 1px solid #CC0000
}/* Generic.Deleted */
.ge {
font-style: italic
}/* Generic.Emph */
.gr {
color: #FF0000
}/* Generic.Error */
.gh {
color: #003300;
}/* Generic.Heading */
.gi {
background-color: #CCFFCC;
border: 1px solid #00CC00
}/* Generic.Inserted */
.go {
color: #AAAAAA
}/* Generic.Output */
.gp {
color: #000099;
}/* Generic.Prompt */
.gs {
}/* Generic.Strong */
.gu {
color: #003300;
}/* Generic.Subheading */
.gt {
color: #99CC66
}/* Generic.Traceback */
.kc {
color: #006699;
}/* Keyword.Constant */
.kd {
color: #006699;
}/* Keyword.Declaration */
.kn {
color: #006699;
}/* Keyword.Namespace */
.kp {
color: #006699
}/* Keyword.Pseudo */
.kr {
color: #006699;
}/* Keyword.Reserved */
.kt {
color: #007788;
}/* Keyword.Type */
.m {
color: #FF6600
}/* Literal.Number */
.s {
color: #d44950
}/* Literal.String */
.na {
color: #4f9fcf
}/* Name.Attribute */
.nb {
color: #336666
}/* Name.Builtin */
.nc {
color: #00AA88;
}/* Name.Class */
.no {
color: #336600
}/* Name.Constant */
.nd {
color: #9999FF
}/* Name.Decorator */
.ni {
color: #999999;
}/* Name.Entity */
.ne {
color: #CC0000;
}/* Name.Exception */
.nf {
color: #CC00FF
}/* Name.Function */
.nl {
color: #9999FF
}/* Name.Label */
.nn {
color: #00CCFF;
}/* Name.Namespace */
.nt {
color: #2f6f9f;
}/* Name.Tag */
.nv {
color: #003333
}/* Name.Variable */
.ow {
color: #000000;
}/* Operator.Word */
.w {
color: #bbbbbb
}/* Text.Whitespace */
.mf {
color: #FF6600
}/* Literal.Number.Float */
.mh {
color: #FF6600
}/* Literal.Number.Hex */
.mi {
color: #FF6600
}/* Literal.Number.Integer */
.mo {
color: #FF6600
}/* Literal.Number.Oct */
.sb {
color: #CC3300
}/* Literal.String.Backtick */
.sc {
color: #CC3300
}/* Literal.String.Char */
.sd {
color: #CC3300;
font-style: italic
}/* Literal.String.Doc */
.s2 {
color: #CC3300
}/* Literal.String.Double */
.se {
color: #CC3300;
}/* Literal.String.Escape */
.sh {
color: #CC3300
}/* Literal.String.Heredoc */
.si {
color: #AA0000
}/* Literal.String.Interpol */
.sx {
color: #CC3300
}/* Literal.String.Other */
.sr {
color: #33AAAA
}/* Literal.String.Regex */
.s1 {
color: #CC3300
}/* Literal.String.Single */
.ss {
color: #FFCC33
}/* Literal.String.Symbol */
.bp {
color: #336666
}/* Name.Builtin.Pseudo */
.vc {
color: #003333
}/* Name.Variable.Class */
.vg {
color: #003333
}/* Name.Variable.Global */
.vi {
color: #003333
}/* Name.Variable.Instance */
.il {
color: #FF6600
}/* Literal.Number.Integer.Long */
.css .o, .css .o + .nt, .css .nt + .nt {
color: #999;
}
/*
* DEMO
*/
.eg-1 td:first-child {
width: 70%;
text-align:left;
}
.eg-1 td:last-child {
width: 30%;
text-align:right;
}
</style>
<?php
//include left panel (navigation)
//follow the tree in inc/config.ui.php
$page_nav["misc"]["sub"]["typo"]["active"] = true;
include("inc/nav.php");
?>
<!-- ==========================CONTENT STARTS HERE ========================== -->
<!-- MAIN PANEL -->
<div id="main" role="main">
<?php
//configure ribbon (breadcrumbs) array("name"=>"url"), leave url empty if no url
//$breadcrumbs["New Crumb"] => "http://url.com"
$breadcrumbs["Misc"] = "";
include("inc/ribbon.php");
?>
<!-- MAIN CONTENT -->
<div id="content">
<!-- row -->
<div class="row">
<!-- NEW WIDGET START -->
<div class="col-sm-6">
<!-- widget content -->
<div class="bs-example bs-example-type">
<h3 class="text-primary" style="margin: 20px 0;">Headers and leads</h3>
<table class="table eg-1">
<tbody>
<tr>
<td>
<h1>h1. SmartAdmin heading</h1>
<p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
</td>
<td class="info">'Open Sans' 26px Light</td>
</tr>
<tr>
<td>
<h2>h2. SmartAdmin heading</h2>
<p>SmartAdmins's global default <code>font-size</code> is <strong>13px</strong>, with a <code>line-height</code> of <strong>1.428</strong>. This is applied to the <code><body></code> and all paragraphs. In addition, <code><p></code> (paragraphs) receive a bottom margin of half their computed line-height (10px by default).</p>
</td>
<td class="info">'Open Sans' 22px Light</td>
</tr>
<tr>
<td>
<h3>h3. SmartAdmin heading</h3>
<p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
<pre><code class="html"><span class="nt"><abbr</span> <span class="na">title=</span><span class="s">"attribute"</span><span class="nt">></span>attr<span class="nt"></abbr></span>
</code></pre>
</td>
<td class="info">'Open Sans' 18px Light</td>
</tr>
<tr>
<td><h4>h4. SmartAdmin heading</h4></td>
<td class="info">'Open Sans' 17px Light</td>
</tr>
<tr>
<td><h5>h5. SmartAdmin heading</h5></td>
<td class="info">'Open Sans' 16px Light</td>
</tr>
<tr>
<td><h6>h6. SmartAdmin heading</h6></td>
<td class="info">'Open Sans' 14px Bold</td>
</tr>
</tbody>
</table>
</div>
<div class="highlight">
<pre><code class="html"><span class="nt"><h1></span>h1. SmartAdmin heading<span class="nt"></h1></span>
<span class="nt"><h2></span>h2. SmartAdmin heading<span class="nt"></h2></span>
<span class="nt"><h3></span>h3. SmartAdmin heading<span class="nt"></h3></span>
<span class="nt"><h4></span>h4. SmartAdmin heading<span class="nt"></h4></span>
<span class="nt"><h5></span>h5. SmartAdmin heading<span class="nt"></h5></span>
<span class="nt"><h6></span>h6. SmartAdmin heading<span class="nt"></h6></span>
</code></pre>
</div>
<div class="bs-example bs-example-type">
<table class="table">
<tbody>
<tr>
<td><h1>h1. SmartAdmin heading <small>Secondary text</small></h1></td>
</tr>
<tr>
<td><h2>h2. SmartAdmin heading <small>Secondary text</small></h2></td>
</tr>
<tr>
<td><h3>h3. SmartAdmin heading <small>Secondary text</small></h3></td>
</tr>
<tr>
<td><h4>h4. SmartAdmin heading <small>Secondary text</small></h4></td>
</tr>
<tr>
<td><h5>h5. SmartAdmin heading <small>Secondary text</small></h5></td>
</tr>
<tr>
<td><h6>h6. SmartAdmin heading <small>Secondary text</small></h6></td>
</tr>
</tbody>
</table>
</div>
<div class="highlight">
<pre><code class="html"><span class="nt"><h1></span>h1. SmartAdmin heading <span class="nt"><small></span>Secondary text<span class="nt"></small></h1></span>
<span class="nt"><h2></span>h2. SmartAdmin heading <span class="nt"><small></span>Secondary text<span class="nt"></small></h2></span>
<span class="nt"><h3></span>h3. SmartAdmin heading <span class="nt"><small></span>Secondary text<span class="nt"></small></h3></span>
<span class="nt"><h4></span>h4. SmartAdmin heading <span class="nt"><small></span>Secondary text<span class="nt"></small></h4></span>
<span class="nt"><h5></span>h5. SmartAdmin heading <span class="nt"><small></span>Secondary text<span class="nt"></small></h5></span>
<span class="nt"><h6></span>h6. SmartAdmin heading <span class="nt"><small></span>Secondary text<span class="nt"></small></h6></span>
</code></pre>
</div>
<!-- end widget content -->
<!-- Widget ID (each widget will need unique ID)-->
<div class="well well-sm">
<h3 class="text-primary">Text and BG color options</h3>
<table class="table table-bordered">
<tbody>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-green">
Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh. <span class="label bg-color-green pull-right">.bg-color-green</span>
</p></td>
<td><code class="pull-right">
.txt-color-green</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-greenDark">
Nullam id dolor id nibh ultricies vehicula ut id elit. <span class="label bg-color-greenDark pull-right">.bg-color-greenDark</span>
</p></td>
<td><code class="pull-right">
.txt-color-greenDark</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-greenLight">
Duis mollis, est non commodo luctus, nisi erat porttitor ligula. <span class="label bg-color-greenLight pull-right">.bg-color-greenLight</span>
</p></td>
<td><code class="pull-right">
.txt-color-greenLight</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-purple">
Maecenas sed diam eget risus varius blandit sit amet non magna. <span class="label bg-color-purple pull-right">.bg-color-purple</span>
</p></td>
<td><code class="pull-right">
.txt-color-purple</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-magenta">
Etiam porta sem malesuada magna mollis euismod. <span class="label bg-color-magenta pull-right">.bg-color-magenta</span>
</p></td>
<td><code class="pull-right">
.txt-color-magenta</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-pink">
Donec ullamcorper nulla non metus auctor fringilla. <span class="label bg-color-pink pull-right">.bg-color-pink</span>
</p></td>
<td><code class="pull-right">
.txt-color-pink</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-pinkDark">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. <span class="label bg-color-pinkDark pull-right">.bg-color-pinkDark</span>
</p></td>
<td><code class="pull-right">
.txt-color-pinkDark</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-blue">
Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. <span class="label bg-color-blue pull-right">.bg-color-blue</span>
</p></td>
<td><code class="pull-right">
.txt-color-blue</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-blueLight">
Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien. <span class="label bg-color-blueLight pull-right">bg-color-blueLight</span>
</p></td>
<td><code class="pull-right">
.txt-color-blueLight</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-blueDark">
Libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros. <span class="label bg-color-blueDark pull-right">.bg-color-blueDark</span>
</p></td>
<td><code class="pull-right">
.txt-color-blueDark</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-teal">
Donec sodales sagittis magna. Sed consequat. <span class="label bg-color-teal pull-right">.bg-color-teal</span>
</p></td>
<td><code class="pull-right">
.txt-color-teal</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-yellow">
Leo eget bibendum sodales, augue velit cursus nunc. <span class="label bg-color-yellow pull-right">.bg-color-yellow</span>
</p></td>
<td><code class="pull-right">
.txt-color-yellow</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-orange">
Sed ut perspiciatis unde omnis iste natus error. <span class="label bg-color-orange pull-right">.bg-color-orange</span>
</p></td>
<td><code class="pull-right">
.txt-color-orange</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-orangeDark">
Nemo enim ipsam voluptatem quia voluptas sit aspernatur. <span class="label bg-color-orangeDark pull-right">.bg-color-orangeDark</span>
</p></td>
<td><code class="pull-right">
.txt-color-orangeDark</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-red">
Qui dolorem ipsum quia dolor sit amet, consectetur. <span class="label bg-color-red pull-right">.bg-color-red</span>
</p></td>
<td><code class="pull-right">
.txt-color-red</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="txt-color-redLight">
Nam libero tempore, cum soluta nobis est eligendi optio. <span class="label bg-color-redLight pull-right">.bg-color-redLight</span>
</p></td>
<td><code class="pull-right">
.txt-color-redLight</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="text-muted">
Cumque nihil impedit quo minus id quod maxime placeat facere.
</p></td>
<td><code class="pull-right">
.text-muted</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="text-primary">
Qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit.
</p></td>
<td><code class="pull-right">
.text-primary</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="text-success">
Ducimus qui blanditiis praesentium voluptatum deleniti.
</p></td>
<td><code class="pull-right">
.text-success</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="text-danger">
Aolorem eum fugiat quo voluptas nulla pariatur?
</p></td>
<td><code class="pull-right">
.text-danger</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="text-warning">
Ut enim ad minima veniam, quis nostrum exercitationem.
</p></td>
<td><code class="pull-right">
.text-warning</code></td>
</tr>
<!-- new tr -->
<tr>
<td>
<p class="text-info">
Tempora incidunt ut labore et dolore magnam aliquam quaerat.
</p></td>
<td><code class="pull-right">
.text-info</code></td>
</tr>
</tbody>
</table>
</div>
<!-- end widget -->
</div>
<!-- WIDGET END -->
<!-- NEW WIDGET START -->
<div class="col-sm-6">
<!-- widget content -->
<div class="well well-sm">
<h3 class="text-primary">All Lists</h3>
<div class="row">
<div class="col-sm-6">
<div class="bs-example">
<ul>
<li>Unordered List Item </li>
<li><strong>I am inside a strong tag</strong></li>
<li><i>I am Italic!</i>
<ul>
<li class="text-danger">We can also be red</li>
<li class="text-success">Or green</li>
<li class="txt-color-purple">Even purple!</li>
</ul>
</li>
<li><strong><i>I am inside a strong and Italic tag, I may also break into a new line if <u>squized</u></i></strong></li>
<li><small>I am inside a small tag</small></li>
</ul>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><ul></span>
<span class="nt"><li></span>...<span class="nt"></li></span>
<span class="nt"></ul></span>
</code></pre></div>
</div>
<div class="col-sm-6">
<div class="bs-example">
<ol>
<li>Ordered List Item </li>
<li><u>Ordered List Item</u></li>
<li><strong>Ordered List Item</strong>
<ul class="list-unstyled">
<li><i class="fa fa-bell text-danger"></i> Unstyled list with custom icon</li>
<li class="text-success"><i class="fa fa-check"></i> <strong><u>Unstyled list</u> with custom icon</strong></li>
<li><i class="fa fa-warning text-warning"></i> <i>Unstyled list with custom icon</i></li>
</ul>
</li>
<li class="text-info"><strong><i>I am inside a strong and Italic tag, I may also break into a new line if squized</i></strong></li>
<li><span class="label label-danger">I am a label</span></li>
</ol>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><ol></span>
<span class="nt"><li></span>...<span class="nt"></li></span>
<span class="nt"></ol></span>
</code></pre></div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="bs-example">
<ul class="list-inline">
<li class="text-success">
<strong>Inline List Item #1</strong>
</li>
<li class="text-danger">
<strong><u>Inline List Item #2</u></strong>
</li>
<li class="text-primary">
<strong><i>Inline List Item #3</i></strong>
</li>
</ul>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><ul</span> <span class="na">class=</span><span class="s">"list-inline"</span><span class="nt">></span>
<span class="nt"><li></span>...<span class="nt"></li></span>
<span class="nt"></ul></span>
</code></pre></div>
</div>
</div>
</div>
<!-- end widget content -->