-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDesign-1.html
111 lines (96 loc) · 4.91 KB
/
Design-1.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<link rel="stylesheet" href="css/bootstrap-chat.min.css" />
</head>
<body>
<section style="background-color: #eee;">
<div class="container py-5">
<div class="row d-flex justify-content-center">
<div class="col-md-8 col-lg-6 col-xl-4">
<div class="card">
<div class="card-header d-flex justify-content-between align-items-center p-3"
style="border-top: 4px solid #ffa900;">
<h5 class="mb-0">Chat messages</h5>
<div class="d-flex flex-row align-items-center">
<span class="badge bg-warning me-3">20</span>
<i class="fas fa-minus me-3 text-muted fa-xs"></i>
<i class="fas fa-comments me-3 text-muted fa-xs"></i>
<i class="fas fa-times text-muted fa-xs"></i>
</div>
</div>
<div class="card-body" data-mdb-perfect-scrollbar="true" style="position: relative; height: 400px">
<div class="d-flex justify-content-between">
<p class="small mb-1">Timona Siera</p>
<p class="small mb-1 text-muted">23 Jan 2:00 pm</p>
</div>
<div class="d-flex flex-row justify-content-start">
<img src="https://mdbcdn.b-cdn.net/img/Photos/new-templates/bootstrap-chat/ava5-bg.webp" alt="avatar 1"
style="width: 45px; height: 100%;">
<div>
<p class="small p-2 ms-3 mb-3 rounded-3" style="background-color: #f5f6f7;">For what reason would it
be advisable for me to think about business content?</p>
</div>
</div>
<div class="d-flex justify-content-between">
<p class="small mb-1 text-muted">23 Jan 2:05 pm</p>
<p class="small mb-1">Johny Bullock</p>
</div>
<div class="d-flex flex-row justify-content-end mb-4 pt-1">
<div>
<p class="small p-2 me-3 mb-3 text-white rounded-3 bg-warning">Thank you for your believe in our
supports</p>
</div>
<img src="https://mdbcdn.b-cdn.net/img/Photos/new-templates/bootstrap-chat/ava6-bg.webp" alt="avatar 1"
style="width: 45px; height: 100%;">
</div>
<div class="d-flex justify-content-between">
<p class="small mb-1">Timona Siera</p>
<p class="small mb-1 text-muted">23 Jan 5:37 pm</p>
</div>
<div class="d-flex flex-row justify-content-start">
<img src="https://mdbcdn.b-cdn.net/img/Photos/new-templates/bootstrap-chat/ava5-bg.webp" alt="avatar 1"
style="width: 45px; height: 100%;">
<div>
<p class="small p-2 ms-3 mb-3 rounded-3" style="background-color: #f5f6f7;">Lorem ipsum dolor sit amet
consectetur adipisicing elit similique quae consequatur</p>
</div>
</div>
<div class="d-flex justify-content-between">
<p class="small mb-1 text-muted">23 Jan 6:10 pm</p>
<p class="small mb-1">Johny Bullock</p>
</div>
<div class="d-flex flex-row justify-content-end mb-4 pt-1">
<div>
<p class="small p-2 me-3 mb-3 text-white rounded-3 bg-warning">Dolorum quasi voluptates quas amet in
repellendus perspiciatis fugiat</p>
</div>
<img src="https://mdbcdn.b-cdn.net/img/Photos/new-templates/bootstrap-chat/ava6-bg.webp" alt="avatar 1"
style="width: 45px; height: 100%;">
</div>
</div>
<div class="card-footer text-muted d-flex justify-content-start align-items-center p-3">
<div class="input-group mb-0">
<input type="text" class="form-control" placeholder="Type message" aria-label="Recipient's username"
aria-describedby="button-addon2" />
<button class="btn btn-warning" type="button" id="button-addon2" style="padding-top: .55rem;">
Button
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="js/mdb.min.js"></script>
<script type="text/javascript"></script>
</body>
</html>