-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhatsapp-conversation.html
97 lines (78 loc) · 1.84 KB
/
whatsapp-conversation.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
<!DOCTYPE html>
<html>
<head>
<title>WhatsApp conversation</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html, body {
height: 100%;
}
html {
display: table;
margin: auto;
}
body {
display: table-cell;
vertical-align: middle;
background-color: #def8ff;
font-family:Tahoma, sans-serif;
width: 500px;
}
#title {
font-size: 2.5em;
text-align: center;
font-weight: bolder;
background-color: #f78bc8;
color: white;
border-radius: 7px;
box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15);
}
.message {
width: 100%;
margin: 5px;
padding:5px;
}
.date {
clear:both;
color: #5c5c5c;
text-align: center;
font-size: 0.8em;
padding-top:15px;
}
.msg-body {
margin: 5px;
padding:5px;
font-size: 1.2em;
color: #fff;
width: 400px;
border-radius: 7px;
box-shadow: 0 5px 10px 0 rgba(0,0,0,0.15);
}
.me {
float: right;
background-color: #71ce71;
}
.you {
float: left;
background-color: #58b7f0;
}
.note {
float: right;
background-color: yellow;
color: black;
}
img {
width: 50px;
}
</style>
</head>
<body>
<div id="title">Conversations between You and Me on whatsapp</div>
<div class="message"><div class="date">18/10/2019 à 13:10</div><div class="msg-body me">message ...</div></div>
<div class="message"><div class="date">18/10/2019 à 13:10</div><div class="msg-body you">message ...</div></div>
<div class="message"><div class="date">18/10/2019 à 13:10</div><div class="msg-body me">message ...</div></div>
<div class="message"><div class="date">18/10/2019 à 13:10</div><div class="msg-body you">message ...</div></div>
<div class="message"><div class="date">13/01/2021 à 16:54</div><div class="msg-body note">That's all folks</div></div>
</body>
</html>