-
Notifications
You must be signed in to change notification settings - Fork 0
/
ilux-Labels-Badges-Alerts.html
155 lines (130 loc) · 7.79 KB
/
ilux-Labels-Badges-Alerts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>iLux - Labels, Badges & Alerts</title>
<!-- sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- load bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- load main styles -->
<link rel="stylesheet" href="css/main.css">
<!-- load iLux -->
<link rel="stylesheet" href="ilux/css/ilux.min.css">
<!-- load fonts -->
<link href="https://fonts.googleapis.com/css?family=Lobster+Two|Quicksand:300,700|Roboto:200,300,400,700" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="label">
<div class="container">
<div class="brand text-center"><a href="">ilux</a></div>
<div class="page-header text-center">
<h2>Labels, Badges & Alerts</h2>
</div>
<div class="row">
<div class="col-md-6">
<h4 class="sub-title">Labels</h4>
<!-- default labels -->
<span class="label label-default">Default</span>
<span class="label label-primary">Primary</span>
<span class="label label-success">Success</span>
<span class="label label-info">Info</span>
<span class="label label-warning">Warning</span>
<span class="label label-danger">Danger</span>
<!-- / default labels -->
<div class="space-2"> </div>
<!-- default filled labels -->
<span class="label label-default-filled">Default</span>
<span class="label label-primary-filled">Primary</span>
<span class="label label-success-filled">Success</span>
<span class="label label-info-filled">Info</span>
<span class="label label-warning-filled">Warning</span>
<span class="label label-danger-filled">Danger</span>
<!-- / default filled labels -->
<div class="space-2"> </div>
<!-- pill labels -->
<span class="label label-pill label-default">Default</span>
<span class="label label-pill label-primary">Primary</span>
<span class="label label-pill label-success">Success</span>
<span class="label label-pill label-info">Info</span>
<span class="label label-pill label-warning">Warning</span>
<span class="label label-pill label-danger">Danger</span>
<!-- / pill labels -->
<div class="space-2"> </div>
<!-- pill filled labels -->
<span class="label label-pill label-default-filled">Default</span>
<span class="label label-pill label-primary-filled">Primary</span>
<span class="label label-pill label-success-filled">Success</span>
<span class="label label-pill label-info-filled">Info</span>
<span class="label label-pill label-warning-filled">Warning</span>
<span class="label label-pill label-danger-filled">Danger</span>
<!-- /pill filled labels -->
<div class="space-5"> </div>
<!-- badges -->
<h4 class="sub-title">Badges</h4>
<p>
<a href="#" class="space-right">Home <span class="badge badge-primary">12</span></a>
<a href="#" class="space-right">Profile</a>
<a href="#" class="space-right">Messages <span class="badge badge-primary">7</span></a>
</p>
<div class="space-2"> </div>
<ul class="nav nav-pills" role="tablist">
<li role="presentation" class="active"><a href="#">Home <span class="badge">12</span></a></li>
<li role="presentation"><a href="#">Profile</a></li>
<li role="presentation"><a href="#">Messages <span class="badge">7</span></a></li>
</ul>
<!-- / badges -->
<div class="space-5"> </div>
</div><!-- / col-md-6 -->
<div class="col-md-6">
<h4 class="sub-title">Alerts</h4>
<!-- alerts -->
<div class="alert alert-success alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Success!</strong> You successfully read this important alert message.
</div>
<div class="alert alert-info alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Info!</strong> This alert needs your attention, but it's not important.
</div>
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<strong>Danger!</strong> Change a few things up and try submitting again.
</div>
<!-- / alerts -->
<!-- alerts with icons -->
<div class="alert alert-sm alert-success alert-dismissible margin-right" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<i class="fa fa-check"></i><strong>Success!</strong> Some text here...
</div>
<div class="alert alert-sm alert-info alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<i class="fa fa-info-circle"></i><strong>Info!</strong> Some text here...
</div>
<div class="alert alert-sm alert-warning alert-dismissible margin-right" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<i class="fa fa-exclamation-triangle"></i><strong>Warning!</strong> Some text here...
</div>
<div class="alert alert-sm alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<i class="fa fa-exclamation-circle"></i><strong>Danger!</strong> Some text here...
</div>
<!-- / alerts with icons -->
</div><!-- / col-md-6 -->
</div><!-- / row -->
</div><!-- / container -->
</div>
<script type="text/javascript" src="js/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>