bootsteam-theme 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +66 -0
- package/README.md +5 -0
- package/dist/bootsteam-theme.css +12319 -0
- package/dist/bootsteam-theme.min.css +5 -0
- package/docs/alerts.html +118 -0
- package/docs/badges.html +140 -0
- package/docs/buttons.html +194 -0
- package/docs/carousel.html +109 -0
- package/docs/collapse.html +105 -0
- package/docs/containers.html +307 -0
- package/docs/css/bootsteam-theme.min.css +5 -0
- package/docs/dialogs.html +154 -0
- package/docs/forms.html +335 -0
- package/docs/index.html +108 -0
- package/docs/navs.html +250 -0
- package/docs/offcanvas.html +92 -0
- package/docs/plugins.html +99 -0
- package/docs/scripts/scripts.js +70 -0
- package/docs/scripts/themeHandler.js +57 -0
- package/docs/spinners.html +145 -0
- package/docs/tables.html +613 -0
- package/docs/themes.html +166 -0
- package/docs/toasts.html +119 -0
- package/docs/typography.html +176 -0
- package/docs-templates/alerts.html +76 -0
- package/docs-templates/badges.html +98 -0
- package/docs-templates/buttons.html +152 -0
- package/docs-templates/carousel.html +67 -0
- package/docs-templates/collapse.html +63 -0
- package/docs-templates/containers.html +265 -0
- package/docs-templates/dialogs.html +112 -0
- package/docs-templates/forms.html +293 -0
- package/docs-templates/index.html +66 -0
- package/docs-templates/navs.html +208 -0
- package/docs-templates/offcanvas.html +50 -0
- package/docs-templates/partials/_footer.html +4 -0
- package/docs-templates/partials/_head.html +7 -0
- package/docs-templates/partials/_nav.html +29 -0
- package/docs-templates/partials/_scripts.html +5 -0
- package/docs-templates/plugins.html +57 -0
- package/docs-templates/spinners.html +103 -0
- package/docs-templates/tables.html +571 -0
- package/docs-templates/themes.html +68 -0
- package/docs-templates/toasts.html +77 -0
- package/docs-templates/typography.html +134 -0
- package/gulpfile.js +51 -0
- package/package.json +17 -0
- package/src/_alerts.scss +65 -0
- package/src/_darkThemeOverrides.scss +74 -0
- package/src/_fieldset.scss +27 -0
- package/src/_forms.scss +134 -0
- package/src/_tables.scss +77 -0
- package/src/_twr-variables-dark.scss +23 -0
- package/src/_twr-variables.scss +71 -0
- package/src/bootsteam.scss +25 -0
- package/src/plugins/_allPlugins.scss +2 -0
- package/src/plugins/_slimSelect.scss +106 -0
- package/src/plugins/_summernote.scss +45 -0
package/docs/tables.html
ADDED
|
@@ -0,0 +1,613 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<title>Tables | Tower Bootstrap Theme</title>
|
|
6
|
+
<meta charset="utf-8" />
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
+
<meta name="description" content="Demo of custom Bootstrap theme">
|
|
9
|
+
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@7.3.67/css/materialdesignicons.min.css" rel="stylesheet" />
|
|
10
|
+
<link href="css/bootsteam-theme.min.css" rel="stylesheet" />
|
|
11
|
+
<script src="scripts/themeHandler.js" type="text/javascript"></script>
|
|
12
|
+
</head>
|
|
13
|
+
|
|
14
|
+
<body>
|
|
15
|
+
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top">
|
|
16
|
+
<div class="container">
|
|
17
|
+
<a href="index.html" class="navbar-brand">Bootsteam Theme</a>
|
|
18
|
+
|
|
19
|
+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-collapse-area">
|
|
20
|
+
<span class="navbar-toggler-icon"></span>
|
|
21
|
+
</button>
|
|
22
|
+
|
|
23
|
+
<div class="collapse navbar-collapse" id="navbar-collapse-area">
|
|
24
|
+
<ul class="navbar-nav ms-auto">
|
|
25
|
+
<li class="nav-item dropdown">
|
|
26
|
+
<button type="button" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">
|
|
27
|
+
<span id="current-theme"></span> <span class="d-md-none">Switch Themes</span>
|
|
28
|
+
</button>
|
|
29
|
+
<div class="dropdown-menu dropdown-menu-end">
|
|
30
|
+
<button type="button" class="dropdown-item" data-bs-theme-value="light"><span class="mdi mdi-weather-sunny"></span> Light</button>
|
|
31
|
+
<button type="button" class="dropdown-item" data-bs-theme-value="dark"><span class="mdi mdi-weather-night"></span> Dark</button>
|
|
32
|
+
<button type="button" class="dropdown-item" data-bs-theme-value="auto"><span class="mdi mdi-theme-light-dark"></span> Auto</button>
|
|
33
|
+
</div>
|
|
34
|
+
</li>
|
|
35
|
+
<li class="nav-item">
|
|
36
|
+
<a href="https://github.com/StrutTower/bootsteam-theme" rel="noreferrer noopener" class="nav-link">
|
|
37
|
+
GitHub
|
|
38
|
+
</a>
|
|
39
|
+
</li>
|
|
40
|
+
</ul>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</nav>
|
|
44
|
+
|
|
45
|
+
<main class="container mt-5 pt-2">
|
|
46
|
+
<ol class="breadcrumb">
|
|
47
|
+
<li class="breadcrumb-item"><a href="index.html">Homepage</a></li>
|
|
48
|
+
<li class="breadcrumb-item active">Tables</li>
|
|
49
|
+
</ol>
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
<h2 class="display-4">Tables</h2>
|
|
53
|
+
<hr />
|
|
54
|
+
|
|
55
|
+
<h4>Basic</h4>
|
|
56
|
+
<table class="table">
|
|
57
|
+
<thead>
|
|
58
|
+
<tr>
|
|
59
|
+
<th scope="col">#</th>
|
|
60
|
+
<th scope="col">First</th>
|
|
61
|
+
<th scope="col">Last</th>
|
|
62
|
+
<th scope="col">Handle</th>
|
|
63
|
+
</tr>
|
|
64
|
+
</thead>
|
|
65
|
+
<tbody>
|
|
66
|
+
<tr>
|
|
67
|
+
<th scope="row">1</th>
|
|
68
|
+
<td>Mark</td>
|
|
69
|
+
<td>Otto</td>
|
|
70
|
+
<td>@mdo</td>
|
|
71
|
+
</tr>
|
|
72
|
+
<tr>
|
|
73
|
+
<th scope="row">2</th>
|
|
74
|
+
<td>Jacob</td>
|
|
75
|
+
<td>Thornton</td>
|
|
76
|
+
<td>@fat</td>
|
|
77
|
+
</tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<th scope="row">3</th>
|
|
80
|
+
<td>Larry</td>
|
|
81
|
+
<td>the Bird</td>
|
|
82
|
+
<td>@twitter</td>
|
|
83
|
+
</tr>
|
|
84
|
+
</tbody>
|
|
85
|
+
</table>
|
|
86
|
+
<h4>Dark</h4>
|
|
87
|
+
<table class="table table-dark">
|
|
88
|
+
<thead>
|
|
89
|
+
<tr>
|
|
90
|
+
<th scope="col">#</th>
|
|
91
|
+
<th scope="col">First</th>
|
|
92
|
+
<th scope="col">Last</th>
|
|
93
|
+
<th scope="col">Handle</th>
|
|
94
|
+
</tr>
|
|
95
|
+
</thead>
|
|
96
|
+
<tbody>
|
|
97
|
+
<tr>
|
|
98
|
+
<th scope="row">1</th>
|
|
99
|
+
<td>Mark</td>
|
|
100
|
+
<td>Otto</td>
|
|
101
|
+
<td>@mdo</td>
|
|
102
|
+
</tr>
|
|
103
|
+
<tr>
|
|
104
|
+
<th scope="row">2</th>
|
|
105
|
+
<td>Jacob</td>
|
|
106
|
+
<td>Thornton</td>
|
|
107
|
+
<td>@fat</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<th scope="row">3</th>
|
|
111
|
+
<td>Larry</td>
|
|
112
|
+
<td>the Bird</td>
|
|
113
|
+
<td>@twitter</td>
|
|
114
|
+
</tr>
|
|
115
|
+
</tbody>
|
|
116
|
+
</table>
|
|
117
|
+
<h4>Header Options</h4>
|
|
118
|
+
<table class="table">
|
|
119
|
+
<thead class="thead-dark">
|
|
120
|
+
<tr>
|
|
121
|
+
<th scope="col">#</th>
|
|
122
|
+
<th scope="col">First</th>
|
|
123
|
+
<th scope="col">Last</th>
|
|
124
|
+
<th scope="col">Handle</th>
|
|
125
|
+
</tr>
|
|
126
|
+
</thead>
|
|
127
|
+
<tbody>
|
|
128
|
+
<tr>
|
|
129
|
+
<th scope="row">1</th>
|
|
130
|
+
<td>Mark</td>
|
|
131
|
+
<td>Otto</td>
|
|
132
|
+
<td>@mdo</td>
|
|
133
|
+
</tr>
|
|
134
|
+
<tr>
|
|
135
|
+
<th scope="row">2</th>
|
|
136
|
+
<td>Jacob</td>
|
|
137
|
+
<td>Thornton</td>
|
|
138
|
+
<td>@fat</td>
|
|
139
|
+
</tr>
|
|
140
|
+
<tr>
|
|
141
|
+
<th scope="row">3</th>
|
|
142
|
+
<td>Larry</td>
|
|
143
|
+
<td>the Bird</td>
|
|
144
|
+
<td>@twitter</td>
|
|
145
|
+
</tr>
|
|
146
|
+
</tbody>
|
|
147
|
+
</table>
|
|
148
|
+
|
|
149
|
+
<table class="table">
|
|
150
|
+
<thead class="thead-light">
|
|
151
|
+
<tr>
|
|
152
|
+
<th scope="col">#</th>
|
|
153
|
+
<th scope="col">First</th>
|
|
154
|
+
<th scope="col">Last</th>
|
|
155
|
+
<th scope="col">Handle</th>
|
|
156
|
+
</tr>
|
|
157
|
+
</thead>
|
|
158
|
+
<tbody>
|
|
159
|
+
<tr>
|
|
160
|
+
<th scope="row">1</th>
|
|
161
|
+
<td>Mark</td>
|
|
162
|
+
<td>Otto</td>
|
|
163
|
+
<td>@mdo</td>
|
|
164
|
+
</tr>
|
|
165
|
+
<tr>
|
|
166
|
+
<th scope="row">2</th>
|
|
167
|
+
<td>Jacob</td>
|
|
168
|
+
<td>Thornton</td>
|
|
169
|
+
<td>@fat</td>
|
|
170
|
+
</tr>
|
|
171
|
+
<tr>
|
|
172
|
+
<th scope="row">3</th>
|
|
173
|
+
<td>Larry</td>
|
|
174
|
+
<td>the Bird</td>
|
|
175
|
+
<td>@twitter</td>
|
|
176
|
+
</tr>
|
|
177
|
+
</tbody>
|
|
178
|
+
</table>
|
|
179
|
+
<h4>Striped Light</h4>
|
|
180
|
+
<table class="table table-striped">
|
|
181
|
+
<thead>
|
|
182
|
+
<tr>
|
|
183
|
+
<th scope="col">#</th>
|
|
184
|
+
<th scope="col">First</th>
|
|
185
|
+
<th scope="col">Last</th>
|
|
186
|
+
<th scope="col">Handle</th>
|
|
187
|
+
</tr>
|
|
188
|
+
</thead>
|
|
189
|
+
<tbody>
|
|
190
|
+
<tr>
|
|
191
|
+
<th scope="row">1</th>
|
|
192
|
+
<td>Mark</td>
|
|
193
|
+
<td>Otto</td>
|
|
194
|
+
<td>@mdo</td>
|
|
195
|
+
</tr>
|
|
196
|
+
<tr>
|
|
197
|
+
<th scope="row">2</th>
|
|
198
|
+
<td>Jacob</td>
|
|
199
|
+
<td>Thornton</td>
|
|
200
|
+
<td>@fat</td>
|
|
201
|
+
</tr>
|
|
202
|
+
<tr>
|
|
203
|
+
<th scope="row">3</th>
|
|
204
|
+
<td>Larry</td>
|
|
205
|
+
<td>the Bird</td>
|
|
206
|
+
<td>@twitter</td>
|
|
207
|
+
</tr>
|
|
208
|
+
</tbody>
|
|
209
|
+
</table>
|
|
210
|
+
<h4>Striped Dark</h4>
|
|
211
|
+
<table class="table table-striped table-dark">
|
|
212
|
+
<thead>
|
|
213
|
+
<tr>
|
|
214
|
+
<th scope="col">#</th>
|
|
215
|
+
<th scope="col">First</th>
|
|
216
|
+
<th scope="col">Last</th>
|
|
217
|
+
<th scope="col">Handle</th>
|
|
218
|
+
</tr>
|
|
219
|
+
</thead>
|
|
220
|
+
<tbody>
|
|
221
|
+
<tr>
|
|
222
|
+
<th scope="row">1</th>
|
|
223
|
+
<td>Mark</td>
|
|
224
|
+
<td>Otto</td>
|
|
225
|
+
<td>@mdo</td>
|
|
226
|
+
</tr>
|
|
227
|
+
<tr>
|
|
228
|
+
<th scope="row">2</th>
|
|
229
|
+
<td>Jacob</td>
|
|
230
|
+
<td>Thornton</td>
|
|
231
|
+
<td>@fat</td>
|
|
232
|
+
</tr>
|
|
233
|
+
<tr>
|
|
234
|
+
<th scope="row">3</th>
|
|
235
|
+
<td>Larry</td>
|
|
236
|
+
<td>the Bird</td>
|
|
237
|
+
<td>@twitter</td>
|
|
238
|
+
</tr>
|
|
239
|
+
</tbody>
|
|
240
|
+
</table>
|
|
241
|
+
<h4>Bordered</h4>
|
|
242
|
+
<table class="table table-bordered">
|
|
243
|
+
<thead>
|
|
244
|
+
<tr>
|
|
245
|
+
<th scope="col">#</th>
|
|
246
|
+
<th scope="col">First</th>
|
|
247
|
+
<th scope="col">Last</th>
|
|
248
|
+
<th scope="col">Handle</th>
|
|
249
|
+
</tr>
|
|
250
|
+
</thead>
|
|
251
|
+
<tbody>
|
|
252
|
+
<tr>
|
|
253
|
+
<th scope="row">1</th>
|
|
254
|
+
<td>Mark</td>
|
|
255
|
+
<td>Otto</td>
|
|
256
|
+
<td>@mdo</td>
|
|
257
|
+
</tr>
|
|
258
|
+
<tr>
|
|
259
|
+
<th scope="row">2</th>
|
|
260
|
+
<td>Jacob</td>
|
|
261
|
+
<td>Thornton</td>
|
|
262
|
+
<td>@fat</td>
|
|
263
|
+
</tr>
|
|
264
|
+
<tr>
|
|
265
|
+
<th scope="row">3</th>
|
|
266
|
+
<td colspan="2">Larry the Bird</td>
|
|
267
|
+
<td>@twitter</td>
|
|
268
|
+
</tr>
|
|
269
|
+
</tbody>
|
|
270
|
+
</table>
|
|
271
|
+
|
|
272
|
+
<table class="table table-bordered table-dark">
|
|
273
|
+
<thead>
|
|
274
|
+
<tr>
|
|
275
|
+
<th scope="col">#</th>
|
|
276
|
+
<th scope="col">First</th>
|
|
277
|
+
<th scope="col">Last</th>
|
|
278
|
+
<th scope="col">Handle</th>
|
|
279
|
+
</tr>
|
|
280
|
+
</thead>
|
|
281
|
+
<tbody>
|
|
282
|
+
<tr>
|
|
283
|
+
<th scope="row">1</th>
|
|
284
|
+
<td>Mark</td>
|
|
285
|
+
<td>Otto</td>
|
|
286
|
+
<td>@mdo</td>
|
|
287
|
+
</tr>
|
|
288
|
+
<tr>
|
|
289
|
+
<th scope="row">2</th>
|
|
290
|
+
<td>Jacob</td>
|
|
291
|
+
<td>Thornton</td>
|
|
292
|
+
<td>@fat</td>
|
|
293
|
+
</tr>
|
|
294
|
+
<tr>
|
|
295
|
+
<th scope="row">3</th>
|
|
296
|
+
<td colspan="2">Larry the Bird</td>
|
|
297
|
+
<td>@twitter</td>
|
|
298
|
+
</tr>
|
|
299
|
+
</tbody>
|
|
300
|
+
</table>
|
|
301
|
+
<h4>Hover Rows</h4>
|
|
302
|
+
<table class="table table-hover">
|
|
303
|
+
<thead>
|
|
304
|
+
<tr>
|
|
305
|
+
<th scope="col">#</th>
|
|
306
|
+
<th scope="col">First</th>
|
|
307
|
+
<th scope="col">Last</th>
|
|
308
|
+
<th scope="col">Handle</th>
|
|
309
|
+
</tr>
|
|
310
|
+
</thead>
|
|
311
|
+
<tbody>
|
|
312
|
+
<tr>
|
|
313
|
+
<th scope="row">1</th>
|
|
314
|
+
<td>Mark</td>
|
|
315
|
+
<td>Otto</td>
|
|
316
|
+
<td>@mdo</td>
|
|
317
|
+
</tr>
|
|
318
|
+
<tr>
|
|
319
|
+
<th scope="row">2</th>
|
|
320
|
+
<td>Jacob</td>
|
|
321
|
+
<td>Thornton</td>
|
|
322
|
+
<td>@fat</td>
|
|
323
|
+
</tr>
|
|
324
|
+
<tr>
|
|
325
|
+
<th scope="row">3</th>
|
|
326
|
+
<td colspan="2">Larry the Bird</td>
|
|
327
|
+
<td>@twitter</td>
|
|
328
|
+
</tr>
|
|
329
|
+
</tbody>
|
|
330
|
+
</table>
|
|
331
|
+
<table class="table table-hover table-dark">
|
|
332
|
+
<thead>
|
|
333
|
+
<tr>
|
|
334
|
+
<th scope="col">#</th>
|
|
335
|
+
<th scope="col">First</th>
|
|
336
|
+
<th scope="col">Last</th>
|
|
337
|
+
<th scope="col">Handle</th>
|
|
338
|
+
</tr>
|
|
339
|
+
</thead>
|
|
340
|
+
<tbody>
|
|
341
|
+
<tr>
|
|
342
|
+
<th scope="row">1</th>
|
|
343
|
+
<td>Mark</td>
|
|
344
|
+
<td>Otto</td>
|
|
345
|
+
<td>@mdo</td>
|
|
346
|
+
</tr>
|
|
347
|
+
<tr>
|
|
348
|
+
<th scope="row">2</th>
|
|
349
|
+
<td>Jacob</td>
|
|
350
|
+
<td>Thornton</td>
|
|
351
|
+
<td>@fat</td>
|
|
352
|
+
</tr>
|
|
353
|
+
<tr>
|
|
354
|
+
<th scope="row">3</th>
|
|
355
|
+
<td colspan="2">Larry the Bird</td>
|
|
356
|
+
<td>@twitter</td>
|
|
357
|
+
</tr>
|
|
358
|
+
</tbody>
|
|
359
|
+
</table>
|
|
360
|
+
<h4>Theme Colors</h4>
|
|
361
|
+
<table class="table table-hover table-bordered">
|
|
362
|
+
<thead>
|
|
363
|
+
<tr>
|
|
364
|
+
<th scope="col">Type</th>
|
|
365
|
+
<th scope="col">Column heading</th>
|
|
366
|
+
<th scope="col">Column heading</th>
|
|
367
|
+
</tr>
|
|
368
|
+
</thead>
|
|
369
|
+
<tbody>
|
|
370
|
+
<tr class="table-active">
|
|
371
|
+
<th scope="row">Active</th>
|
|
372
|
+
<td>Cell</td>
|
|
373
|
+
<td>Cell</td>
|
|
374
|
+
</tr>
|
|
375
|
+
<tr>
|
|
376
|
+
<th scope="row">Default</th>
|
|
377
|
+
<td>Cell</td>
|
|
378
|
+
<td>Cell</td>
|
|
379
|
+
</tr>
|
|
380
|
+
<tr class="table-primary">
|
|
381
|
+
<th scope="row">Primary</th>
|
|
382
|
+
<td>Cell</td>
|
|
383
|
+
<td>Cell</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr class="table-secondary">
|
|
386
|
+
<th scope="row">Secondary</th>
|
|
387
|
+
<td>Cell</td>
|
|
388
|
+
<td>Cell</td>
|
|
389
|
+
</tr>
|
|
390
|
+
<tr class="table-success">
|
|
391
|
+
<th scope="row">Success</th>
|
|
392
|
+
<td>Cell</td>
|
|
393
|
+
<td>Cell</td>
|
|
394
|
+
</tr>
|
|
395
|
+
<tr class="table-danger">
|
|
396
|
+
<th scope="row">Danger</th>
|
|
397
|
+
<td>Cell</td>
|
|
398
|
+
<td>Cell</td>
|
|
399
|
+
</tr>
|
|
400
|
+
<tr class="table-warning">
|
|
401
|
+
<th scope="row">Warning</th>
|
|
402
|
+
<td>Cell</td>
|
|
403
|
+
<td>Cell</td>
|
|
404
|
+
</tr>
|
|
405
|
+
<tr class="table-info">
|
|
406
|
+
<th scope="row">Info</th>
|
|
407
|
+
<td>Cell</td>
|
|
408
|
+
<td>Cell</td>
|
|
409
|
+
</tr>
|
|
410
|
+
<tr class="table-light">
|
|
411
|
+
<th scope="row">Light</th>
|
|
412
|
+
<td>Cell</td>
|
|
413
|
+
<td>Cell</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr class="table-dark">
|
|
416
|
+
<th scope="row">Dark</th>
|
|
417
|
+
<td>Cell</td>
|
|
418
|
+
<td>Cell</td>
|
|
419
|
+
</tr>
|
|
420
|
+
</tbody>
|
|
421
|
+
</table>
|
|
422
|
+
<table class="table table-hover table-bordered table-striped">
|
|
423
|
+
<thead>
|
|
424
|
+
<tr>
|
|
425
|
+
<th scope="col">Type</th>
|
|
426
|
+
<th scope="col">Column heading</th>
|
|
427
|
+
<th scope="col">Column heading</th>
|
|
428
|
+
</tr>
|
|
429
|
+
</thead>
|
|
430
|
+
<tbody>
|
|
431
|
+
<tr class="table-active">
|
|
432
|
+
<th scope="row">Active</th>
|
|
433
|
+
<td>Cell</td>
|
|
434
|
+
<td>Cell</td>
|
|
435
|
+
</tr>
|
|
436
|
+
<tr class="table-active">
|
|
437
|
+
<th scope="row">Active</th>
|
|
438
|
+
<td>Cell</td>
|
|
439
|
+
<td>Cell</td>
|
|
440
|
+
</tr>
|
|
441
|
+
<tr>
|
|
442
|
+
<th scope="row">Default</th>
|
|
443
|
+
<td>Cell</td>
|
|
444
|
+
<td>Cell</td>
|
|
445
|
+
</tr>
|
|
446
|
+
<tr>
|
|
447
|
+
<th scope="row">Default</th>
|
|
448
|
+
<td>Cell</td>
|
|
449
|
+
<td>Cell</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr class="table-primary">
|
|
452
|
+
<th scope="row">Primary</th>
|
|
453
|
+
<td>Cell</td>
|
|
454
|
+
<td>Cell</td>
|
|
455
|
+
</tr>
|
|
456
|
+
<tr class="table-primary">
|
|
457
|
+
<th scope="row">Primary</th>
|
|
458
|
+
<td>Cell</td>
|
|
459
|
+
<td>Cell</td>
|
|
460
|
+
</tr>
|
|
461
|
+
<tr class="table-primary table-active">
|
|
462
|
+
<th scope="row">Primary</th>
|
|
463
|
+
<td>Cell</td>
|
|
464
|
+
<td>Cell</td>
|
|
465
|
+
</tr>
|
|
466
|
+
<tr class="table-secondary">
|
|
467
|
+
<th scope="row">Secondary</th>
|
|
468
|
+
<td>Cell</td>
|
|
469
|
+
<td>Cell</td>
|
|
470
|
+
</tr>
|
|
471
|
+
<tr class="table-secondary">
|
|
472
|
+
<th scope="row">Secondary</th>
|
|
473
|
+
<td>Cell</td>
|
|
474
|
+
<td>Cell</td>
|
|
475
|
+
</tr>
|
|
476
|
+
<tr class="table-secondary table-active">
|
|
477
|
+
<th scope="row">Secondary</th>
|
|
478
|
+
<td>Cell</td>
|
|
479
|
+
<td>Cell</td>
|
|
480
|
+
</tr>
|
|
481
|
+
<tr class="table-success">
|
|
482
|
+
<th scope="row">Success</th>
|
|
483
|
+
<td>Cell</td>
|
|
484
|
+
<td>Cell</td>
|
|
485
|
+
</tr>
|
|
486
|
+
<tr class="table-success">
|
|
487
|
+
<th scope="row">Success</th>
|
|
488
|
+
<td>Cell</td>
|
|
489
|
+
<td>Cell</td>
|
|
490
|
+
</tr>
|
|
491
|
+
<tr class="table-success table-active">
|
|
492
|
+
<th scope="row">Success</th>
|
|
493
|
+
<td>Cell</td>
|
|
494
|
+
<td>Cell</td>
|
|
495
|
+
</tr>
|
|
496
|
+
<tr class="table-danger">
|
|
497
|
+
<th scope="row">Danger</th>
|
|
498
|
+
<td>Cell</td>
|
|
499
|
+
<td>Cell</td>
|
|
500
|
+
</tr>
|
|
501
|
+
<tr class="table-danger">
|
|
502
|
+
<th scope="row">Danger</th>
|
|
503
|
+
<td>Cell</td>
|
|
504
|
+
<td>Cell</td>
|
|
505
|
+
</tr>
|
|
506
|
+
<tr class="table-danger table-active">
|
|
507
|
+
<th scope="row">Danger</th>
|
|
508
|
+
<td>Cell</td>
|
|
509
|
+
<td>Cell</td>
|
|
510
|
+
</tr>
|
|
511
|
+
<tr class="table-warning">
|
|
512
|
+
<th scope="row">Warning</th>
|
|
513
|
+
<td>Cell</td>
|
|
514
|
+
<td>Cell</td>
|
|
515
|
+
</tr>
|
|
516
|
+
<tr class="table-warning">
|
|
517
|
+
<th scope="row">Warning</th>
|
|
518
|
+
<td>Cell</td>
|
|
519
|
+
<td>Cell</td>
|
|
520
|
+
</tr>
|
|
521
|
+
<tr class="table-warning table-active">
|
|
522
|
+
<th scope="row">Warning</th>
|
|
523
|
+
<td>Cell</td>
|
|
524
|
+
<td>Cell</td>
|
|
525
|
+
</tr>
|
|
526
|
+
<tr class="table-info">
|
|
527
|
+
<th scope="row">Info</th>
|
|
528
|
+
<td>Cell</td>
|
|
529
|
+
<td>Cell</td>
|
|
530
|
+
</tr>
|
|
531
|
+
<tr class="table-info">
|
|
532
|
+
<th scope="row">Info</th>
|
|
533
|
+
<td>Cell</td>
|
|
534
|
+
<td>Cell</td>
|
|
535
|
+
</tr>
|
|
536
|
+
<tr class="table-info table-active">
|
|
537
|
+
<th scope="row">Info</th>
|
|
538
|
+
<td>Cell</td>
|
|
539
|
+
<td>Cell</td>
|
|
540
|
+
</tr>
|
|
541
|
+
<tr class="table-light">
|
|
542
|
+
<th scope="row">Light</th>
|
|
543
|
+
<td>Cell</td>
|
|
544
|
+
<td>Cell</td>
|
|
545
|
+
</tr>
|
|
546
|
+
<tr class="table-light">
|
|
547
|
+
<th scope="row">Light</th>
|
|
548
|
+
<td>Cell</td>
|
|
549
|
+
<td>Cell</td>
|
|
550
|
+
</tr>
|
|
551
|
+
<tr class="table-light table-active">
|
|
552
|
+
<th scope="row">Light</th>
|
|
553
|
+
<td>Cell</td>
|
|
554
|
+
<td>Cell</td>
|
|
555
|
+
</tr>
|
|
556
|
+
<tr class="table-dark">
|
|
557
|
+
<th scope="row">Dark</th>
|
|
558
|
+
<td>Cell</td>
|
|
559
|
+
<td>Cell</td>
|
|
560
|
+
</tr>
|
|
561
|
+
<tr class="table-dark">
|
|
562
|
+
<th scope="row">Dark</th>
|
|
563
|
+
<td>Cell</td>
|
|
564
|
+
<td>Cell</td>
|
|
565
|
+
</tr>
|
|
566
|
+
<tr class="table-dark table-active">
|
|
567
|
+
<th scope="row">Dark</th>
|
|
568
|
+
<td>Cell</td>
|
|
569
|
+
<td>Cell</td>
|
|
570
|
+
</tr>
|
|
571
|
+
</tbody>
|
|
572
|
+
</table>
|
|
573
|
+
|
|
574
|
+
<table class="table table-striped table-primary">
|
|
575
|
+
<thead>
|
|
576
|
+
<tr>
|
|
577
|
+
<th scope="col">Type</th>
|
|
578
|
+
<th scope="col">Column heading</th>
|
|
579
|
+
<th scope="col">Column heading</th>
|
|
580
|
+
</tr>
|
|
581
|
+
</thead>
|
|
582
|
+
<tbody>
|
|
583
|
+
<tr>
|
|
584
|
+
<td>1</td>
|
|
585
|
+
<td>2</td>
|
|
586
|
+
<td>3</td>
|
|
587
|
+
</tr>
|
|
588
|
+
<tr>
|
|
589
|
+
<td>1</td>
|
|
590
|
+
<td>2</td>
|
|
591
|
+
<td>3</td>
|
|
592
|
+
</tr>
|
|
593
|
+
<tr>
|
|
594
|
+
<td>1</td>
|
|
595
|
+
<td>2</td>
|
|
596
|
+
<td>3</td>
|
|
597
|
+
</tr>
|
|
598
|
+
</tbody>
|
|
599
|
+
</table>
|
|
600
|
+
</main>
|
|
601
|
+
|
|
602
|
+
<footer class="container">
|
|
603
|
+
<hr />
|
|
604
|
+
<p>TowerSoft</p>
|
|
605
|
+
</footer>
|
|
606
|
+
|
|
607
|
+
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
|
608
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
|
609
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
|
610
|
+
<script src="scripts/scripts.js"></script>
|
|
611
|
+
</body>
|
|
612
|
+
|
|
613
|
+
</html>
|