"User List"
Bootstrap 3.3.0 Snippet by comandor

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<script src="https://use.fontawesome.com/1e803d693b.js"></script>
<div class="container">
<div class="row">
<div class="panel panel-default user_panel">
<div class="panel-heading">
<h3 class="panel-title">User List</h3>
</div>
<div class="panel-body">
<div class="table-container">
<table class="table-users table" border="0">
<tbody>
<tr>
<td width="10" align="center">
<i class="fa fa-2x fa-user fw"></i>
</td>
<td>
John Smith<br><i class="fa fa-envelope"></i>
</td>
<td>
Builder Admin
</td>
<td align="center">
Last Login: 6/14/2017<br><small class="text-muted">2 days ago</small>
</td>
</tr>
<tr>
<td width="10">
<img class="pull-left img-circle nav-user-photo" width="50" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxhcCYW4QDWMOjOuUTxOd50KcJvK-rop9qE9zRltSbVS_bO-cfWA" />··
</td>
<td>
Herbert Hoover<br><i class="fa fa-envelope"></i>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
i { vertical-align: middle; }
.table-users tbody tr:hover {
cursor: pointer;
background-color: #eee;
}
.nav-user-photo {
vertical-align: middle;
}
.user_panel {
width: 50%;
}
.more-link {
width:98%;
text-align:center;
display:block;
color: #1071FF;
padding: 3px;
padding-left: 5px;
padding-right: 5px;
margin: 5px auto;
/*transition: .5s;*/
border-radius: 0px;
}
.more-link:hover {
top: 5px;
color: #1071FF;
border: #1071FF 1px solid;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: