"Chat"
Bootstrap 4.0.0 Snippet by djvu61

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/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="main-container">
<section>
<div class="container">
<div class="row card flex-row">
<div class="col-auto">
<form class="card-header d-none d-lg-block">
<input class="form-control form-control-lg" type="search" placeholder="Search chat" />
</form>
<div class="list-group list-group-chat list-group-flush">
<a href="#" class="list-group-item list-group-item-action active">
<div class="media">
<img alt="Image" src="https://source.unsplash.com/Nm70URdtf3c/336x336" class="avatar avatar-sm m-0" />
<div class="media-body d-none d-lg-block ml-2">
<div class="d-flex justify-content-between align-items-center">
<h6 class="mb-0">Daniel Cameron
<span class="badge badge-indicator badge-success"></span>
</h6>
<div>
<small class="text-muted">1 hour ago</small>
</div>
</div>
<span class="text-muted text-small col-11 p-0 text-truncate d-block">Let's keep those protoypes 100</span>
</div>
</div>
</a>
<a href="#" class="list-group-item list-group-item-action">
<div class="media">
<img alt="Image" src="assets/img/avatar-female-3.jpg" class="avatar avatar-sm m-0" />
<div class="media-body d-none d-lg-block ml-2">
<div class="d-flex justify-content-between align-items-center">
<h6 class="mb-0">Mercy Ketteridge</h6>
<div>
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
30
31
32
33
34
35
36
37
section {
display: block;
}
body {
margin: 0;
font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
text-align: left;
background-color: #f8f9fa;
}
h6 {
margin-top: 0;
margin-bottom: 1.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
small {
font-size: 80%;
}
a {
color: #4582EC;
text-decoration: none;
background-color: transparent;
-webkit-text-decoration-skip: objects;
}
a:hover {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: