-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalerts.html
More file actions
204 lines (187 loc) · 8.58 KB
/
Copy pathalerts.html
File metadata and controls
204 lines (187 loc) · 8.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap 4 Default HTML</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/alerts.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<div class="container">
<h1>Default Alerts</h1>
<div class="alert alert-primary" role="alert">
A simple primary alert—check it out!
</div>
<div class="alert alert-secondary" role="alert">
A simple secondary alert—check it out!
</div>
<div class="alert alert-success" role="alert">
A simple success alert—check it out!
</div>
<div class="alert alert-danger" role="alert">
A simple danger alert—check it out!
</div>
<div class="alert alert-warning" role="alert">
A simple warning alert—check it out!
</div>
<div class="alert alert-info" role="alert">
A simple info alert—check it out!
</div>
<div class="alert alert-light" role="alert">
A simple light alert—check it out!
</div>
<div class="alert alert-dark" role="alert">
A simple dark alert—check it out!
</div>
<hr>
<h1>Default Alerts Gradient</h1>
<div class="alert alert-primary-gradient" role="alert">
A simple primary alert—check it out!
</div>
<div class="alert alert-secondary-gradient" role="alert">
A simple secondary alert—check it out!
</div>
<div class="alert alert-success-gradient" role="alert">
A simple success alert—check it out!
</div>
<div class="alert alert-danger-gradient" role="alert">
A simple danger alert—check it out!
</div>
<div class="alert alert-warning-gradient" role="alert">
A simple warning alert—check it out!
</div>
<div class="alert alert-info-gradient" role="alert">
A simple info alert—check it out!
</div>
<div class="alert alert-light-gradient" role="alert">
A simple light alert—check it out!
</div>
<div class="alert alert-dark-gradient" role="alert">
A simple dark alert—check it out!
</div>
<hr>
<h1>Outlined Alerts</h1>
<div class="alert alert-primary-outline" role="alert">
A simple primary alert—check it out!
</div>
<div class="alert alert-secondary-outline" role="alert">
A simple secondary alert—check it out!
</div>
<div class="alert alert-success-outline" role="alert">
A simple success alert—check it out!
</div>
<div class="alert alert-danger-outline" role="alert">
A simple danger alert—check it out!
</div>
<div class="alert alert-warning-outline" role="alert">
A simple warning alert—check it out!
</div>
<div class="alert alert-info-outline" role="alert">
A simple info alert—check it out!
</div>
<div class="alert alert-light-outline" role="alert">
A simple light alert—check it out!
</div>
<div class="alert alert-dark-outline" role="alert">
A simple dark alert—check it out!
</div>
<hr>
<h1>Link Color Alerts</h1>
<div class="alert alert-primary" role="alert">
A simple primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-secondary" role="alert">
A simple secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-success" role="alert">
A simple success alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-danger" role="alert">
A simple danger alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-warning" role="alert">
A simple warning alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-info" role="alert">
A simple info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-light" role="alert">
A simple light alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-dark" role="alert">
A simple dark alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<hr>
<h1>Link Color Alerts Outlined</h1>
<div class="alert alert-primary-outline" role="alert">
A simple primary alert with <a href="#" class="alert-link-primary">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-secondary-outline" role="alert">
A simple secondary alert with <a href="#" class="alert-link-secondary">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-success-outline" role="alert">
A simple success alert with <a href="#" class="alert-link-success">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-danger-outline" role="alert">
A simple danger alert with <a href="#" class="alert-link-danger">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-warning-outline" role="alert">
A simple warning alert with <a href="#" class="alert-link-warning">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-info-outline" role="alert">
A simple info alert with <a href="#" class="alert-link-info">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-light-outline" role="alert">
A simple light alert with <a href="#" class="alert-link-light">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-dark-outline" role="alert">
A simple dark alert with <a href="#" class="alert-link-dark">an example link</a>. Give it a click if you like.
</div>
<hr>
<h1>Additional content</h1>
<p>All these Alerts are also available for secondary, success, danger, warning, info, light and dark</p>
<div class="alert alert-primary" role="alert">
<h4 class="alert-heading">Well done!</h4>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-primary-outline" role="alert">
<h4 class="alert-heading">Well done!</h4>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<div class="alert alert-primary-gradient" role="alert">
<h4 class="alert-heading">Well done!</h4>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
<hr>
<h1>Popup Alerts</h1>
<p>All these Alerts are also available for secondary, success, danger, warning, info, light and dark</p>
<div class="alert alert-primary alert-dismissible fade show" role="alert">
<strong>Primary</strong> You should check in on some of those fields below.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-primary-outline alert-dismissible fade show" role="alert">
<strong>Primary Outlined</strong> You should check in on some of those fields below.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="alert alert-primary-gradient alert-dismissible fade show" role="alert">
<strong>Primary Gradient</strong> You should check in on some of those fields below.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</body>
</html>