xxxxxxxxxx
1
<section class="intro">
2
<div class="bg-image h-100" style="background-color: #6095F0;">
3
<div class="mask d-flex align-items-center h-100">
4
<div class="container">
5
<div class="row justify-content-center">
6
<div class="col-12">
7
<div class="card shadow-2-strong" style="background-color: #f5f7fa;">
8
<div class="card-body">
9
<div class="table-responsive">
10
<table class="table table-borderless mb-0">
11
<thead>
12
<tr>
13
<th scope="col">
14
<div class="form-check">
15
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault" />
16
</div>
17
</th>
18
<th scope="col">EMPLOYEES</th>
19
<th scope="col">POSITION</th>
20
<th scope="col">AGE</th>
21
<th scope="col">ADDRESS</th>
22
<th scope="col">Close</th>
23
</tr>
24
</thead>
25
<tbody>
26
<tr>
27
<th scope="row">
28
<div class="form-check">
29
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault1" checked/>
30
</div>
31
</th>
32
<td>Tiger Nixon</td>
33
<td>System Architect</td>
34
<td>61</td>
35
<td>Edinburgh</td>
36
<td>
37
<button type="button" class="btn btn-danger btn-sm px-3">
38
<i class="fas fa-times"></i>
39
</button>
40
</td>
41
</tr>
42
<tr>
43
<th scope="row">
44
<div class="form-check">
45
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault2" />
46
</div>
47
</th>
48
<td>Sonya Frost</td>
49
<td>Software Engineer</td>
50
<td>23</td>
51
<td>Edinburgh</td>
52
<td>
53
<button type="button" class="btn btn-danger btn-sm px-3">
54
<i class="fas fa-times"></i>
55
</button>
56
</td>
57
</tr>
58
<tr>
59
<th scope="row">
60
<div class="form-check">
61
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault3" checked/>
62
</div>
63
</th>
64
<td>Jena Gaines</td>
65
<td>Office Manager</td>
66
<td>30</td>
67
<td>London</td>
68
<td>
69
<button type="button" class="btn btn-danger btn-sm px-3">
70
<i class="fas fa-times"></i>
71
</button>
72
</td>
73
</tr>
74
<tr>
75
<th scope="row">
76
<div class="form-check">
77
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault4" checked/>
78
</div>
79
</th>
80
<td>Quinn Flynn</td>
81
<td>Support Lead</td>
82
<td>22</td>
83
<td>Edinburgh</td>
84
<td>
85
<button type="button" class="btn btn-danger btn-sm px-3">
86
<i class="fas fa-times"></i>
87
</button>
88
</td>
89
</tr>
90
<tr>
91
<th scope="row">
92
<div class="form-check">
93
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault5" checked/>
94
</div>
95
</th>
96
<td>Charde Marshall</td>
97
<td>Regional Director</td>
98
<td>36</td>
99
<td>San Francisco</td>
100
<td>
101
<button type="button" class="btn btn-danger btn-sm px-3">
102
<i class="fas fa-times"></i>
103
</button>
104
</td>
105
</tr>
106
<tr>
107
<th scope="row">
108
<div class="form-check">
109
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault6" />
110
</div>
111
</th>
112
<td>Haley Kennedy</td>
113
<td>Senior Marketing Designer</td>
114
<td>43</td>
115
<td>London</td>
116
<td>
117
<button type="button" class="btn btn-danger btn-sm px-3">
118
<i class="fas fa-times"></i>
119
</button>
120
</td>
121
</tr>
122
<tr>
123
<th scope="row">
124
<div class="form-check">
125
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault7" checked/>
126
</div>
127
</th>
128
<td>Tatyana Fitzpatrick</td>
129
<td>Regional Director</td>
130
<td>19</td>
131
<td>Warsaw</td>
132
<td>
133
<button type="button" class="btn btn-danger btn-sm px-3">
134
<i class="fas fa-times"></i>
135
</button>
136
</td>
137
</tr>
138
</tbody>
139
</table>
140
</div>
141
</div>
142
</div>
143
</div>
144
</div>
145
</div>
146
</div>
147
</div>
148
</section>
xxxxxxxxxx
1
html,
2
body,
3
.intro {
4
height: 100%;
5
}
6
7
table td,
8
table th {
9
text-overflow: ellipsis;
10
white-space: nowrap;
11
overflow: hidden;
12
}
13
14
.card {
15
border-radius: .5rem;
16
}
17
18
.mask-custom {
19
background: rgba(24, 24, 16, .2);
20
border-radius: 2em;
21
backdrop-filter: blur(25px);
22
border: 2px solid rgba(255, 255, 255, 0.05);
23
background-clip: padding-box;
24
box-shadow: 10px 10px 10px rgba(46, 54, 68, 0.03);
25
}
1
1
Console errors: 0