forked from sharno/Bootstrap_Metro_Dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.html
1099 lines (993 loc) · 42.1 KB
/
ui.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>
<!-- start: Meta -->
<meta charset="utf-8">
<title>Bootstrap Metro Dashboard by Dennis Ji for ARM demo</title>
<meta name="description" content="Bootstrap Metro Dashboard">
<meta name="author" content="Dennis Ji">
<meta name="keyword" content="Metro, Metro UI, Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina">
<!-- end: Meta -->
<!-- start: Mobile Specific -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- end: Mobile Specific -->
<!-- start: CSS -->
<link id="bootstrap-style" href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link id="base-style" href="css/style.css" rel="stylesheet">
<link id="base-style-responsive" href="css/style-responsive.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,latin-ext' rel='stylesheet' type='text/css'>
<!-- end: CSS -->
<!-- The HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link id="ie-style" href="css/ie.css" rel="stylesheet">
<![endif]-->
<!--[if IE 9]>
<link id="ie9style" href="css/ie9.css" rel="stylesheet">
<![endif]-->
<!-- start: Favicon -->
<link rel="shortcut icon" href="img/favicon.ico">
<!-- end: Favicon -->
</head>
<body>
<!-- start: Header -->
<div class="navbar">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".top-nav.nav-collapse,.sidebar-nav.nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.html"><span>Metro</span></a>
<!-- start: Header Menu -->
<div class="nav-no-collapse header-nav">
<ul class="nav pull-right">
<li class="dropdown hidden-phone">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="halflings-icon white warning-sign"></i>
</a>
<ul class="dropdown-menu notifications">
<li class="dropdown-menu-title">
<span>You have 11 notifications</span>
<a href="#refresh"><i class="icon-repeat"></i></a>
</li>
<li>
<a href="#">
<span class="icon blue"><i class="icon-user"></i></span>
<span class="message">New user registration</span>
<span class="time">1 min</span>
</a>
</li>
<li>
<a href="#">
<span class="icon green"><i class="icon-comment-alt"></i></span>
<span class="message">New comment</span>
<span class="time">7 min</span>
</a>
</li>
<li>
<a href="#">
<span class="icon green"><i class="icon-comment-alt"></i></span>
<span class="message">New comment</span>
<span class="time">8 min</span>
</a>
</li>
<li>
<a href="#">
<span class="icon green"><i class="icon-comment-alt"></i></span>
<span class="message">New comment</span>
<span class="time">16 min</span>
</a>
</li>
<li>
<a href="#">
<span class="icon blue"><i class="icon-user"></i></span>
<span class="message">New user registration</span>
<span class="time">36 min</span>
</a>
</li>
<li>
<a href="#">
<span class="icon yellow"><i class="icon-shopping-cart"></i></span>
<span class="message">2 items sold</span>
<span class="time">1 hour</span>
</a>
</li>
<li class="warning">
<a href="#">
<span class="icon red"><i class="icon-user"></i></span>
<span class="message">User deleted account</span>
<span class="time">2 hour</span>
</a>
</li>
<li class="warning">
<a href="#">
<span class="icon red"><i class="icon-shopping-cart"></i></span>
<span class="message">New comment</span>
<span class="time">6 hour</span>
</a>
</li>
<li>
<a href="#">
<span class="icon green"><i class="icon-comment-alt"></i></span>
<span class="message">New comment</span>
<span class="time">yesterday</span>
</a>
</li>
<li>
<a href="#">
<span class="icon blue"><i class="icon-user"></i></span>
<span class="message">New user registration</span>
<span class="time">yesterday</span>
</a>
</li>
<li class="dropdown-menu-sub-footer">
<a>View all notifications</a>
</li>
</ul>
</li>
<!-- start: Notifications Dropdown -->
<li class="dropdown hidden-phone">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="halflings-icon white tasks"></i>
</a>
<ul class="dropdown-menu tasks">
<li class="dropdown-menu-title">
<span>You have 17 tasks in progress</span>
<a href="#refresh"><i class="icon-repeat"></i></a>
</li>
<li>
<a href="#">
<span class="header">
<span class="title">iOS Development</span>
<span class="percent"></span>
</span>
<div class="taskProgress progressSlim red">80</div>
</a>
</li>
<li>
<a href="#">
<span class="header">
<span class="title">Android Development</span>
<span class="percent"></span>
</span>
<div class="taskProgress progressSlim green">47</div>
</a>
</li>
<li>
<a href="#">
<span class="header">
<span class="title">ARM Development</span>
<span class="percent"></span>
</span>
<div class="taskProgress progressSlim yellow">32</div>
</a>
</li>
<li>
<a href="#">
<span class="header">
<span class="title">ARM Development</span>
<span class="percent"></span>
</span>
<div class="taskProgress progressSlim greenLight">63</div>
</a>
</li>
<li>
<a href="#">
<span class="header">
<span class="title">ARM Development</span>
<span class="percent"></span>
</span>
<div class="taskProgress progressSlim orange">80</div>
</a>
</li>
<li>
<a class="dropdown-menu-sub-footer">View all tasks</a>
</li>
</ul>
</li>
<!-- end: Notifications Dropdown -->
<!-- start: Message Dropdown -->
<li class="dropdown hidden-phone">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="halflings-icon white envelope"></i>
</a>
<ul class="dropdown-menu messages">
<li class="dropdown-menu-title">
<span>You have 9 messages</span>
<a href="#refresh"><i class="icon-repeat"></i></a>
</li>
<li>
<a href="#">
<span class="avatar"><img src="img/avatar.jpg" alt="Avatar"></span>
<span class="header">
<span class="from">
Dennis Ji
</span>
<span class="time">
6 min
</span>
</span>
<span class="message">
Lorem ipsum dolor sit amet consectetur adipiscing elit, et al commore
</span>
</a>
</li>
<li>
<a href="#">
<span class="avatar"><img src="img/avatar.jpg" alt="Avatar"></span>
<span class="header">
<span class="from">
Dennis Ji
</span>
<span class="time">
56 min
</span>
</span>
<span class="message">
Lorem ipsum dolor sit amet consectetur adipiscing elit, et al commore
</span>
</a>
</li>
<li>
<a href="#">
<span class="avatar"><img src="img/avatar.jpg" alt="Avatar"></span>
<span class="header">
<span class="from">
Dennis Ji
</span>
<span class="time">
3 hours
</span>
</span>
<span class="message">
Lorem ipsum dolor sit amet consectetur adipiscing elit, et al commore
</span>
</a>
</li>
<li>
<a href="#">
<span class="avatar"><img src="img/avatar.jpg" alt="Avatar"></span>
<span class="header">
<span class="from">
Dennis Ji
</span>
<span class="time">
yesterday
</span>
</span>
<span class="message">
Lorem ipsum dolor sit amet consectetur adipiscing elit, et al commore
</span>
</a>
</li>
<li>
<a href="#">
<span class="avatar"><img src="img/avatar.jpg" alt="Avatar"></span>
<span class="header">
<span class="from">
Dennis Ji
</span>
<span class="time">
Jul 25, 2012
</span>
</span>
<span class="message">
Lorem ipsum dolor sit amet consectetur adipiscing elit, et al commore
</span>
</a>
</li>
<li>
<a class="dropdown-menu-sub-footer">View all messages</a>
</li>
</ul>
</li>
<!-- end: Message Dropdown -->
<li>
<a class="btn" href="#">
<i class="halflings-icon white wrench"></i>
</a>
</li>
<!-- start: User Dropdown -->
<li class="dropdown">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="halflings-icon white user"></i> Dennis Ji
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-menu-title">
<span>Account Settings</span>
</li>
<li><a href="#"><i class="halflings-icon user"></i> Profile</a></li>
<li><a href="login.html"><i class="halflings-icon off"></i> Logout</a></li>
</ul>
</li>
<!-- end: User Dropdown -->
</ul>
</div>
<!-- end: Header Menu -->
</div>
</div>
</div>
<!-- start: Header -->
<div class="container-fluid-full">
<div class="row-fluid">
<!-- start: Main Menu -->
<div id="sidebar-left" class="span2">
<div class="nav-collapse sidebar-nav">
<ul class="nav nav-tabs nav-stacked main-menu">
<li><a href="index.html"><i class="icon-bar-chart"></i><span class="hidden-tablet"> Dashboard</span></a></li>
<li><a href="messages.html"><i class="icon-envelope"></i><span class="hidden-tablet"> Messages</span></a></li>
<li><a href="tasks.html"><i class="icon-tasks"></i><span class="hidden-tablet"> Tasks</span></a></li>
<li><a href="ui.html"><i class="icon-eye-open"></i><span class="hidden-tablet"> UI Features</span></a></li>
<li><a href="widgets.html"><i class="icon-dashboard"></i><span class="hidden-tablet"> Widgets</span></a></li>
<li>
<a class="dropmenu" href="#"><i class="icon-folder-close-alt"></i><span class="hidden-tablet"> Dropdown</span><span class="label label-important"> 3 </span></a>
<ul>
<li><a class="submenu" href="submenu.html"><i class="icon-file-alt"></i><span class="hidden-tablet"> Sub Menu 1</span></a></li>
<li><a class="submenu" href="submenu2.html"><i class="icon-file-alt"></i><span class="hidden-tablet"> Sub Menu 2</span></a></li>
<li><a class="submenu" href="submenu3.html"><i class="icon-file-alt"></i><span class="hidden-tablet"> Sub Menu 3</span></a></li>
</ul>
</li>
<li><a href="form.html"><i class="icon-edit"></i><span class="hidden-tablet"> Forms</span></a></li>
<li><a href="chart.html"><i class="icon-list-alt"></i><span class="hidden-tablet"> Charts</span></a></li>
<li><a href="typography.html"><i class="icon-font"></i><span class="hidden-tablet"> Typography</span></a></li>
<li><a href="gallery.html"><i class="icon-picture"></i><span class="hidden-tablet"> Gallery</span></a></li>
<li><a href="table.html"><i class="icon-align-justify"></i><span class="hidden-tablet"> Tables</span></a></li>
<li><a href="calendar.html"><i class="icon-calendar"></i><span class="hidden-tablet"> Calendar</span></a></li>
<li><a href="file-manager.html"><i class="icon-folder-open"></i><span class="hidden-tablet"> File Manager</span></a></li>
<li><a href="icon.html"><i class="icon-star"></i><span class="hidden-tablet"> Icons</span></a></li>
<li><a href="login.html"><i class="icon-lock"></i><span class="hidden-tablet"> Login Page</span></a></li>
</ul>
</div>
</div>
<!-- end: Main Menu -->
<noscript>
<div class="alert alert-block span10">
<h4 class="alert-heading">Warning!</h4>
<p>You need to have <a href="http://en.wikipedia.org/wiki/JavaScript" target="_blank">JavaScript</a> enabled to use this site.</p>
</div>
</noscript>
<!-- start: Content -->
<div id="content" class="span10">
<ul class="breadcrumb">
<li>
<i class="icon-home"></i>
<a href="index.html">Home</a>
<i class="icon-angle-right"></i>
</li>
<li>
<i class="icon-eye-open"></i>
<a href="#">UI Features</a>
</li>
</ul>
<div class="row-fluid">
<div class="box yellow span12">
<div class="box-header">
<h2><i class="halflings-icon tasks"></i><span class="break"></span>Sliders</h2>
</div>
<div class="box-content">
<table class="table table-striped">
<tr>
<td>
<div class="slider sliderSimple"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin green"></div>
<div class="field_notice">Min: <span class="must sliderMinLabel">$180</span></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMax blue"></div>
<div class="field_notice">Max: <span class="must sliderMaxLabel">$280</span></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderRange red"></div>
<div class="field_notice">Price Range: <span class="must sliderRangeLabel">$192 - $470</span></div>
</td>
</tr>
<tr>
<td>
<div id="sliderVertical-1" class="sliderVertical greenDark"></div>
<div id="sliderVertical-2" class="sliderVertical greenLight"></div>
<div id="sliderVertical-3" class="sliderVertical pink"></div>
<div id="sliderVertical-4" class="sliderVertical pinkDark"></div>
<div id="sliderVertical-5" class="sliderVertical yellow"></div>
<div id="sliderVertical-6" class="sliderVertical purple"></div>
<div id="sliderVertical-7" class="sliderVertical blue"></div>
<div id="sliderVertical-8" class="sliderVertical blueDark"></div>
<div id="sliderVertical-9" class="sliderVertical blueLight"></div>
<div id="sliderVertical-10" class="sliderVertical orange"></div>
<div id="sliderVertical-11" class="sliderVertical orangeDark"></div>
<div id="sliderVertical-12" class="sliderVertical red"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-1 green"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-2 yellow"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-3 pink"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-4 red"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-5 purple"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-6 greenDark"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-7 orange"></div>
</td>
</tr>
<tr>
<td>
<div class="slider sliderMin-8 blue"></div>
</td>
</tr>
</table>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box blue span12">
<div class="box-header">
<h2><i class="halflings-icon hand-top"></i><span class="break"></span>Quick Buttons</h2>
</div>
<div class="box-content">
<a class="quick-button span2">
<i class="icon-group"></i>
<p>Users</p>
<span class="notification blue">1.367</span>
</a>
<a class="quick-button span2">
<i class="icon-comments-alt"></i>
<p>Comments</p>
<span class="notification green">167</span>
</a>
<a class="quick-button span2">
<i class="icon-shopping-cart"></i>
<p>Orders</p>
</a>
<a class="quick-button span2">
<i class="icon-barcode"></i>
<p>Products</p>
</a>
<a class="quick-button span2">
<i class="icon-envelope"></i>
<p>Messages</p>
</a>
<a class="quick-button span2">
<i class="icon-calendar"></i>
<p>Calendar</p>
<span class="notification red">68</span>
</a>
<div class="clearfix"></div>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon hand-top"></i><span class="break"></span>Small Quick Buttons</h2>
</div>
<div class="box-content">
<a class="quick-button-small span1">
<i class="icon-group"></i>
<p>Users</p>
<span class="notification blue">7</span>
</a>
<a class="quick-button-small span1">
<i class="icon-comments-alt"></i>
<p>Comments</p>
<span class="notification green">4</span>
</a>
<a class="quick-button-small span1">
<i class="icon-shopping-cart"></i>
<p>Orders</p>
</a>
<a class="quick-button-small span1">
<i class="icon-barcode"></i>
<p>Products</p>
</a>
<a class="quick-button-small span1">
<i class="icon-envelope"></i>
<p>Messages</p>
</a>
<a class="quick-button-small span1">
<i class="icon-calendar"></i>
<p>Calendar</p>
<span class="notification red">8</span>
</a>
<a class="quick-button-small span1">
<i class="icon-beaker"></i>
<p>Projects</p>
</a>
<a class="quick-button-small span1">
<i class="icon-thumbs-up"></i>
<p>Likes</p>
<span class="notification green">1</span>
</a>
<a class="quick-button-small span1">
<i class="icon-heart-empty"></i>
<p>Favorites</p>
</a>
<a class="quick-button-small span1">
<i class="icon-bullhorn"></i>
<p>Notifications</p>
<span class="notification yellow">7</span>
</a>
<a class="quick-button-small span1">
<i class="icon-cogs"></i>
<p>Settings</p>
</a>
<a class="quick-button-small span1">
<i class="icon-dashboard"></i>
<p>Dashboard</p>
</a>
<div class="clearfix"></div>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon tasks"></i><span class="break"></span>Progress Bars</h2>
</div>
<div class="box-content">
<table class="table table-striped">
<tr>
<td>Basic</td>
<td>
<div class="progress simpleProgress blue">80</div>
</td>
</tr>
<tr>
<td>Progress</td>
<td>
<div class="progress progressAnimate yellow"></div>
<div class="field_notice">Value: <span class="must progressAnimateValue">0%</span></div>
</td>
</tr>
<tr>
<td>Upload</td>
<td>
<div class="progress progressUploadAnimate pink"></div>
<div class="field_notice">Uploading: <span class="must progressUploadAnimateValue">0 Mb</span> / 4096 Gb</div>
</td>
</tr>
</table>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon tasks"></i><span class="break"></span>Skill Bars</h2>
</div>
<div class="box-content">
<ul class="skill-bar">
<li>
<h5>Web Design ( 40% )</h5>
<div class="meter yellow"><span style="width: 40%"></span></div><!-- Edite width here -->
</li>
<li>
<h5>Wordpress ( 80% )</h5>
<div class="meter blue"><span style="width: 80%"></span></div><!-- Edite width here -->
</li>
<li>
<h5>Branding ( 100% )</h5>
<div class="meter pink"><span style="width: 100%"></span></div><!-- Edite width here -->
</li>
<li>
<h5>SEO Optmization ( 60% )</h5>
<div class="meter green"><span style="width: 60%"></span></div><!-- Edite width here -->
</li>
</ul>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon tasks"></i><span class="break"></span>Standard Progress Bars</h2>
<div class="box-icon">
<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
</div>
</div>
<div class="box-content">
<h3>Basic</h3>
<div class="progress">
<div class="bar" style="width: 70%;"></div>
</div>
<h3>Striped</h3>
<div class="progress progress-striped">
<div class="bar" style="width: 30%;"></div>
</div>
<h3>Animated</h3>
<div class="progress progress-striped progress-success active">
<div class="bar" style="width: 50%;"></div>
</div>
<h3>Additional Colors</h3>
<div class="progress progress-info progress-striped" style="margin-bottom: 9px;">
<div class="bar" style="width: 20%"></div>
</div>
<div class="progress progress-success" style="margin-bottom: 9px;">
<div class="bar" style="width: 40%"></div>
</div>
<div class="progress progress-warning progress-striped active" style="margin-bottom: 9px;">
<div class="bar" style="width: 60%"></div>
</div>
<div class="progress progress-danger progress-striped" style="margin-bottom: 9px;">
<div class="bar" style="width: 80%"></div>
</div>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon bullhorn"></i><span class="break"></span>Alerts</h2>
<div class="box-icon">
<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
</div>
</div>
<div class="box-content alerts">
<div class="alert alert-error">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Oh snap!</strong> Change a few things up and try submitting again.
</div>
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Well done!</strong> You successfully read this important alert message.
</div>
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
</div>
<div class="alert alert-block ">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4 class="alert-heading">Warning!</h4>
<p>Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</p>
</div>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon bell"></i><span class="break"></span>Growl Like Notifications</h2>
<div class="box-icon">
<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
</div>
</div>
<div class="box-content">
<div class="alert alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4 class="alert-heading">Attention!</h4>
<p>Click buttons below to see Pop Notifications.</p>
</div>
<p class="center">
<button class="btn btn-primary" id="add-regular"><i class="halflings-icon white bell"></i>Regular</button>
<button class="btn btn-primary" id="add-sticky"><i class="halflings-icon white bell"></i>Sticky</button>
<button class="btn btn-primary" id="add-without-image"><i class="halflings-icon white bell"></i>w/o image</button>
<button class="btn btn-primary" id="add-gritter-light"><i class="halflings-icon white bell"></i>White</button>
<button class="btn btn-primary" id="remove-all"><i class="halflings-icon white bell"></i>Remove All</button>
</p>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon bell"></i><span class="break"></span>Bootstrap Notifications</h2>
<div class="box-icon">
<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
</div>
</div>
<div class="box-content">
<div class="alert alert-block">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4 class="alert-heading">Attention!</h4>
<p>Click buttons below to see Pop Notifications.</p>
</div>
<p class="center">
<button class="btn btn-primary noty" data-noty-options='{"text":"This is a success notification","layout":"topLeft","type":"success"}'><i class="halflings-icon white bell"></i> Top Left</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is an alert notification with fade effect","layout":"topCenter","type":"alert","animateOpen": {"opacity": "show"}}'><i class="halflings-icon white bell"></i> Top Center (fade)</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is an error notification","layout":"topRight","type":"error"}'><i class="halflings-icon white bell"></i> Top Right</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is a success information","layout":"top","type":"information"}'><i class="halflings-icon white bell"></i> Top Full Width</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is an alert notification with fade effect","layout":"center","type":"alert","animateOpen": {"opacity": "show"}}'><i class="halflings-icon white bell"></i> Center (fade)</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is an error notification","layout":"center","type":"error"}'><i class="halflings-icon white bell"></i> Center</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is an error notification","layout":"bottomLeft","type":"error"}'><i class="halflings-icon white bell"></i> Bottom Left</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is an alert notification with fade effect","layout":"bottomRight","type":"alert","animateOpen": {"opacity": "show"}}'><i class="halflings-icon white bell"></i> Bottom Right (fade)</button>
<button class="btn btn-primary noty" data-noty-options='{"text":"This is an alert","layout":"bottom","type":"alert","closeButton":"true"}'><i class="halflings-icon white bell"></i> Bottom Full Width with Close Button</button>
</p>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span4">
<div class="box-header">
<h2><i class="halflings-icon plus"></i><span class="break"></span>Extended Elements</h2>
<div class="box-icon">
<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
</div>
</div>
<div class="box-content">
<table class="table table-bordered table-striped">
<tr>
<td>Star Rating</td>
<td>
<span class="rating">
<span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span><span class="star"></span>
</span>
</td>
</tr>
<tr>
<td>Popover</td>
<td>
<a href="#" class="btn btn-danger" data-rel="popover" data-content="And here's some amazing content. It's very engaging. right?" title="A Title">Hover for popover</a>
</td>
</tr>
<tr>
<td>Dialog</td>
<td>
<a href="#" class="btn btn-info btn-setting">Click for dialog</a>
</td>
</tr>
<tr>
<td>Tooltip</td>
<td>
<a href="#" title="Tooltip, you can change the position." data-rel="tooltip" class="btn btn-warning">Hover for tooltip</a>
</td>
</tr>
</table>
</div>
</div><!--/span-->
<div class="box span2">
<div class="box-header">
<h2><i class="halflings-icon eye-open"></i><span class="break"></span>Labels</h2>
<div class="box-icon">
<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
</div>
</div>
<div class="box-content">
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td>
<span class="label">Default</span>
</td>
</tr>
<tr>
<td>
<span class="label label-success">Success</span>
</td>
</tr>
<tr>
<td>
<span class="label label-warning">Warning</span>
</td>
</tr>
<tr>
<td>
<span class="label label-important">Important</span>
</td>
</tr>
<tr>
<td>
<span class="label label-info">Info</span>
</td>
</tr>
<tr>
<td>
<span class="label label-inverse">Inverse</span>
</td>
</tr>
</tbody>
</table>
</div>
</div><!--/span-->
<div class="box span6">
<div class="box-header">
<h2><i class="halflings-icon list"></i><span class="break"></span>Buttons</h2>
<div class="box-icon">
<a href="#" class="btn-setting"><i class="halflings-icon wrench"></i></a>
<a href="#" class="btn-minimize"><i class="halflings-icon chevron-up"></i></a>
<a href="#" class="btn-close"><i class="halflings-icon remove"></i></a>
</div>
</div>
<div class="box-content buttons">
<p>
<button class="btn btn-large">Large button</button>
<button class="btn btn-large btn-primary">Large button</button>
<button class="btn btn-large btn-danger">Large button</button>
<button class="btn btn-large btn-warning">Large button</button>
</p>
<p>
<button class="btn btn-large btn-success">Large button</button>
<button class="btn btn-large btn-info">Large button</button>
<button class="btn btn-large btn-inverse">Large button</button>
</p>
<p>
</p>
<div class="btn-group">
<button class="btn btn-large">Large Dropdown</button>
<button class="btn btn-large dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#"><i class="halflings-icon star"></i> Action</a></li>
<li><a href="#"><i class="halflings-icon tag"></i> Another action</a></li>
<li><a href="#"><i class="halflings-icon download-alt"></i> Something else here</a></li>
<li class="divider"></li>
<li><a href="#"><i class="halflings-icon tint"></i> Separated link</a></li>
</ul>
</div>
<hr>
<p class="btn-group">
<button class="btn">Left</button>
<button class="btn">Middle</button>
<button class="btn">Right</button>
</p>
<p>
<button class="btn btn-small"><i class="halflings-icon white star"></i> Icon button</button>
<button class="btn btn-small btn-primary">Small button</button>
<button class="btn btn-small btn-danger">Small button</button>
<button class="btn btn-small btn-warning">Small button</button>
<button class="btn btn-small btn-success">Small button</button>
</p>
<p>
<button class="btn btn-small btn-info">Small button</button>
<button class="btn btn-small btn-inverse">Small button</button>
<button class="btn btn-large btn-primary btn-round">Round button</button>
<button class="btn btn-large btn-round"><i class="halflings-icon white ok"></i></button>
<button class="btn btn-primary"><i class="halflings-icon white edit"></i></button>
</p>
<p>
<button class="btn btn-mini">Mini button</button>
<button class="btn btn-mini btn-primary">Mini button</button>
<button class="btn btn-mini btn-danger">Mini button</button>
<button class="btn btn-mini btn-warning">Mini button</button>
<button class="btn btn-mini btn-info">Mini button</button>
<button class="btn btn-mini btn-success">Mini button</button>
<button class="btn btn-mini btn-inverse">Mini button</button>
</p>
</div>
</div><!--/span-->
</div><!--/row-->
<hr>
<div class="row-fluid">
<div class="box span12">
<div class="box-header">
<h2><i class="halflings-icon th"></i><span class="break"></span>Tabs</h2>
</div>
<div class="box-content">
<ul class="nav tab-menu nav-tabs" id="myTab">
<li class="active"><a href="#info">Info</a></li>
<li><a href="#custom">Custom</a></li>
<li><a href="#messages">Messages</a></li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane active" id="info">
<p>
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
</p>
</div>
<div class="tab-pane" id="custom">
<p>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
</p>
</div>
<div class="tab-pane" id="messages">
<p>
Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
</p>
<p>
Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer
</p>