-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
696 lines (685 loc) · 48.5 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Chat İnterface</title>
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<!-- font awesome css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<!-- Normalize css -->
<link rel="stylesheet" href="css/normalize.css">
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="body">
<nav class="nav">
<div class="navbar">
<div class="navbar-l">
<div class="navbar-brand">
<a href="https://www.facebook.com" title="Go to Facebook home">
<img src="img/logo.png" style="height: 24px; width: 24px;" alt="Facebook Logo">
</a>
</div>
<!-- search input -->
<div class="nav-inp">
<div class="nav-form" role="search">
<form >
<button class="nav-form__btn" type="submit" tabindex="-1" aria-label="Search">
<i class="fas fa-search"></i>
</button>
<input type="text" class="nav-input" placeholder="Search">
</form>
</div>
</div>
<!-- end search input -->
</div>
<div class="navbar-r">
<div class="navbar-nav">
<div class="nav-item nav-link-after">
<a href="" class="nav-link" title="Profile">
<span class="nav-link__span">
<img src="img/user-img.jpg" class="nav-link__span--img" alt="">
<span>Tahmasib</span>
</span>
</a>
</div>
<div class="nav-item link-line">
<a href="" class="nav-link">Home</a>
</div>
<div class="nav-item link-line">
<a href="" class="nav-link">Create</a>
</div>
</div>
<div class="navbar-nav link-line">
<a href="" class="navbar-icon" role="button">
<i class="fas fa-user-friends"></i>
</a>
<a href="" class="navbar-icon" role="button">
<i class="fab fa-facebook-messenger"></i>
</a>
<a href="" class="navbar-icon" role="button">
<i class="fas fa-bell"></i>
</a>
</div>
<div class="navbar-nav link-line">
<a href="" class="navbar-icon" role="button">
<i class="fas fa-question-circle"></i>
</a>
<a href="" class="navbar-icon navbar-arrow-down" role="button">
<i class="fas fa-caret-down"></i>
</a>
</div>
</div>
</div>
</nav>
<div class="chat">
<div class="sidebar">
<div class="banner">
<div class="banner-left">
<img src="img/output-onlinejpgtools.jpg" class="account-pic" alt="">
<h1 class="banner-text">Chats</h1>
</div>
<div class="banner-right">
<i class="fas fa-cog banner-right_icon sett_i"></i>
<div class="banner-right_icon ok">
<svg height="30" width="30" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
<path d="M15.047,20.26245 L15.9815,17.45445 C16.091,17.12495 16.276,16.82495 16.5215,16.57945 L27.486,5.60195 C28.29,4.79695 29.595,4.79695 30.399,5.60195 C31.2025,6.40645 31.202,7.70895 30.399,8.51345 L19.432,19.49345 C19.186,19.73945 18.886,19.92495 18.556,20.03495 L15.7555,20.96995 C15.318,21.11645 14.901,20.69995 15.047,20.26245 Z M24.005,28.00095 L12.001,28.00095 C9.791,28.00095 8,26.20945 8,23.99995 L8,11.99895 C8,9.78945 9.791,7.99845 12.001,7.99845 L19.0035,7.99745 C19.5555,7.99745 20.0035,8.44545 20.0035,8.99745 C20.0035,9.54995 19.5555,9.99795 19.0035,9.99795 L12.001,9.99845 C10.8965,9.99845 10.0005,10.89395 10.0005,11.99895 L10.0005,23.99995 C10.0005,25.10445 10.8965,26.00045 12.001,26.00045 L24.005,26.00045 C25.1095,26.00045 26.005,25.10445 26.005,23.99995 C26.005,23.99995 26.0045,17.55145 26.0045,16.99895 C26.0045,16.44645 26.4525,15.99845 27.005,15.99845 C27.557,15.99845 28.005,16.44645 28.005,16.99895 C28.005,17.55145 28.0055,23.99995 28.0055,23.99995 C28.0055,26.20945 26.2145,28.00095 24.005,28.00095 Z" fill="#000"></path>
</g>
</svg>
</div>
</div>
</div>
<form class="search">
<i class="fas fa-search"></i>
<input type="text" class="input" placeholder="Search Messenger">
</form>
<div class="users" >
<a href="#" class="user">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Emil Abbasov</span>
<div class="msg_date">
<span class="user-msg">You have a message from Emil...</span>
<span class="user-msg ">7 Oct</span>
</div>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user active">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info">
<span class="user-name">Tahmasib Shirinzadeh</span>
<div class="msg_date">
<span class="user-msg">You have a message from Tahmasib...</span>
<span class="user-msg ">7 Oct</span>
</div>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Ali Huseynov</span>
<div class="msg_date">
<span class="user-msg">You have a message from Ali...</span>
<span class="user-msg ">7 Oct</span>
</div>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Kamran Shirinzadeh</span>
<div class="msg_date">
<span class="user-msg">You have a message from Kamran...</span>
<span class="user-msg ">7 Oct</span>
</div>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Imran Shirinzadeh</span>
<div class="msg_date">
<span class="user-msg">You have a message from Imran...</span>
<span class="user-msg">7 Oct</span>
</div>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Ilham Bakirov</span>
<div class="msg_date">
<span class="user-msg">You have a message from Ilham...</span>
<span class="user-msg ">7 Oct</span>
</div>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Roya Aliyeva</span>
<span class="user-msg">You have a message from Roya...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Matanat Gulamova</span>
<span class="user-msg">You have a message from Matanat...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Ahad Shukurov</span>
<span class="user-msg">You have a message from Ahad...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Leyla Taghieva</span>
<span class="user-msg">You have a message from Leyla...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Arzu Bakirova</span>
<span class="user-msg">You have a message from Arzu...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Ikhlas Dibirov</span>
<span class="user-msg">You have a message from Ikhlas...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Ilkin Mammadov</span>
<span class="user-msg">You have a message from Ilkin...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">John Doe</span>
<span class="user-msg">You have a message from John...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
<a href="#" class="user ">
<img src="img/user-img.jpg" class="user-pic" alt="">
<div class="user-info ">
<span class="user-name">Rana Jhoades</span>
<span class="user-msg">You have a message from Rana...</span>
</div>
<div class="user-popup">
<i class="fas fa-ellipsis-h user-msg_ellipsis "></i>
<div id="mypopup" class="user-popup__text">
<ul>
<li class="user-popup__text--list"><span>Mute</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Archive</span></li>
<li class="user-popup__text--list"><span>Delete</span></li>
<li class="divider"></li>
<li class="user-popup__text--list"><span>Mark as Unread</span></li>
<li class="user-popup__text--list"><span>Something's Wrong</span></li>
<li class="user-popup__text--list"><span>Ignore messages</span></li>
<li class="user-popup__text--list"><span>Block messages</span></li>
</ul>
</div>
</div>
</a>
</div>
</div>
<div class="content">
<div class="content-header">
<div class="content-header-l">
<img src="img/user-img.jpg" class="account-pic" alt="">
<div>
<span class="user-name">Tahmasib Shirinzadeh</span>
<div class="activity-time">Active 2h ago</div>
</div>
</div>
<div class="content-header-r">
<i class="fas fa-phone-alt"></i>
<i class="fas fa-video"></i>
<i class="fas fa-info-circle js-info info "></i>
</div>
</div>
<div class="content-area">
<div class="message-area">
<div class="message-content">
<div class="msg me">
<div class="msg-icons">
<i class="fas fa-ellipsis-h"></i>
<i class="fas fa-reply"></i>
<i class="far fa-smile"></i>
</div>
<div class="bubble">Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum aperiam non fugiat iste vel amet dolore ducimus temporibus voluptas. Sapiente. Lorem ipsum dolor sit amet consectetur adipisicing elit.
<span class="tooltip__me">8 October 2019 at 12:15</span>
</div>
</div>
<div class="msg sender">
<img src="img/user-img.jpg" style="height:24px; width: 24px;" alt="">
<div class="bubble">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Veniam, quas atque architecto consectetur placeat asperiores alias veritatis eligendi expedita facere!
<span class="tooltip">8 October 2019 at 12:15</span>
</div>
<div class="msg-icons">
<i class="far fa-smile"></i>
<i class="fas fa-reply"></i>
<i class="fas fa-ellipsis-h"></i>
</div>
</div>
<div class="msg me">
<div class="msg-icons">
<i class="fas fa-ellipsis-h"></i>
<i class="fas fa-reply"></i>
<i class="far fa-smile"></i>
</div>
<div class="bubble">Lorem ipsum dolor sit amet consectetur adipisicing elit.
<span class="tooltip__me">8 October 2019 at 12:15</span>
</div>
</div>
<div class="msg sender">
<img src="img/user-img.jpg" style="height:24px; width: 24px;" alt="">
<div class="bubble">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Perferendis non qui ad, autem fuga animi nobis sapiente porro assumenda recusandae laudantium. Ducimus blanditiis et exercitationem maxime dolorem cupiditate, incidunt, dolores numquam rerum, ipsam obcaecati delectus id impedit in sunt odio!
<span class="tooltip">8 October 2019 at 12:15</span>
</div>
<div class="msg-icons">
<i class="far fa-smile"></i>
<i class="fas fa-reply"></i>
<i class="fas fa-ellipsis-h"></i>
</div>
</div>
</div>
<div class="message-text">
<button class="add-icons">
<i class="js-icon-plus fas fa-plus-circle "></i>
</button>
<div class="invisible-icons">
<a href="#">
<svg height="36" width="36" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
<path d="M18.01125,23.50245 C15.52875,23.50745 13.51225,21.49495 13.50775,19.00845 C13.50275,16.52145 15.51175,14.50195 17.99425,14.49695 C20.47675,14.49245 22.49325,16.50445 22.49775,18.99145 C22.50225,21.47795 20.49375,23.49745 18.01125,23.50245 M17.99825,12.49945 C14.40825,12.50695 11.50325,15.42245 11.51025,19.01245 C11.51675,22.60195 14.43275,25.50695 18.02275,25.49995 C21.61275,25.49295 24.51775,22.57745 24.51125,18.98795 C24.50425,15.39745 21.58825,12.49295 17.99825,12.49945 M26.50025,28.99995 L9.50025,28.99995 C7.29125,28.99995 5.50025,27.20895 5.50025,24.99995 L5.50025,13.99995 C5.50025,11.79095 7.29125,9.99995 9.50025,9.99995 L10.00025,9.99995 C10.96025,9.99995 11.88175,9.61845 12.56075,8.93945 L13.43925,8.06045 C14.11825,7.38195 15.03975,6.99995 16.00025,6.99995 L20.00025,6.99995 C20.96025,6.99995 21.88175,7.38195 22.56075,8.06045 L23.43925,8.93945 C24.11825,9.61845 25.03975,9.99995 26.00025,9.99995 L26.50025,9.99995 C28.70925,9.99995 30.50025,11.79095 30.50025,13.99995 L30.50025,24.99995 C30.50025,27.20895 28.70925,28.99995 26.50025,28.99995" fill="#0099ff"></path>
</g>
</svg>
</a>
<a href="#">
<svg height="36" width="36" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
<path d="M28,14 C26.8955,14 26,14.8955 26,16 C26,17.1045 26.8955,18 28,18 C29.1045,18 30,17.1045 30,16 C30,14.8955 29.1045,14 28,14 M24,18 C22.8955,18 22,18.8955 22,20 C22,21.1045 22.8955,22 24,22 C25.104,22 26,21.1045 26,20 C26,18.8955 25.104,18 24,18 M13,17 L11,17 L11,15 C11,14.448 10.552,14 10,14 C9.448,14 9,14.448 9,15 L9,17 L7,17 C6.448,17 6,17.448 6,18 C6,18.552 6.448,19 7,19 L9,19 L9,21 C9,21.552 9.448,22 10,22 C10.552,22 11,21.552 11,21 L11,19 L13,19 C13.552,19 14,18.552 14,18 C14,17.448 13.552,17 13,17 M25,27 L11,27 C6.0295,27 2,22.9705 2,18 C2,13.0295 6.0295,9 11,9 L25,9 C29.97,9 34,13.0295 34,18 C34,22.9705 29.97,27 25,27" fill="#0099ff"></path>
</g>
</svg>
</a>
<a href="#">
<svg height="36" width="36" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
<path d="M14,28 L22,28 C22.552,28 23,28.448 23,29 C23,29.552 22.552,30 22,30 L14,30 C13.448,30 13,29.552 13,29 C13,28.448 13.448,28 14,28 M18,22.5 C15.239,22.5 13,20.2615 13,17.5 L13,11 C13,8.2385 15.239,6 18,6 C20.761,6 23,8.2385 23,11 L23,17.5 C23,20.2615 20.761,22.5 18,22.5 M18,26.5 C13.0295,26.5 9,22.4705 9,17.5 C9,16.948 9.448,16.5 10,16.5 C10.552,16.5 11,16.948 11,17.5 C11,21.366 14.134,24.5 18,24.5 C21.866,24.5 25.0005,21.366 25.0005,17.5 L25,17.5 C25,16.948 25.448,16.5 26,16.5 C26.552,16.5 27,16.948 27,17.5 C27,22.4705 22.9705,26.5 18,26.5" fill="#0099ff"></path>
</g>
</svg>
</a>
</div>
<div class="visible-icons">
<a href="">
<svg height="36" width="36" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
<path d="M27.002,13.5 L22.502,13.5 C21.95,13.5 21.502,13.948 21.502,14.5 L21.502,21.5 C21.502,22.052 21.95,22.5 22.502,22.5 C23.054,22.5 23.502,22.052 23.502,21.5 L23.502,19.5 L26.502,19.5 C27.054,19.5 27.502,19.052 27.502,18.5 C27.502,17.948 27.054,17.5 26.502,17.5 L23.502,17.5 L23.502,15.5 L27.002,15.5 C27.554,15.5 28.002,15.052 28.002,14.5 C28.002,13.948 27.554,13.5 27.002,13.5 Z M19.502,14.5 C19.502,13.948 19.054,13.5 18.502,13.5 C17.95,13.5 17.502,13.948 17.502,14.5 L17.502,21.5 C17.502,22.052 17.95,22.5 18.502,22.5 C19.054,22.5 19.502,22.052 19.502,21.5 L19.502,14.5 Z M14.963,16.9995 L12.502,17 C11.95,17 11.502,17.448 11.502,18 C11.502,18.552 11.95,19 12.502,19 L13.8855,19 C13.7835,20.1495 13.095,21 11.829,21 C10.3875,21 9.4925,19.725 9.4925,17.95 C9.4925,16.207 10.4655,14.9785 11.886,14.9785 C12.6395,14.9785 13.109,15.3665 13.4295,15.764 C13.6765,16.0695 14,16.229 14.353,16.229 C15.0175,16.229 15.574,15.5085 15.094,14.791 C14.471,13.859 13.335,13.25 11.8795,13.25 C9.179,13.25 7.502,15.2135 7.502,17.9735 C7.502,20.7655 9.071,22.75 11.798,22.75 C14.352,22.75 16.002,20.982 16.002,17.986 C16.002,17.441 15.5365,16.9995 14.963,16.9995 Z M27,30 L17,30 C15.811,30 14.7455,29.48 14.0135,28.656 C13.6395,28.235 13.1,28 12.537,28 L9,28 C6.791,28 5,26.209 5,24 L5,10 C5,7.791 6.791,6 9,6 L19,6 C20.189,6 21.2545,6.52 21.9865,7.3435 C22.3605,7.7645 22.9,8 23.463,8 L27,8 C29.209,8 31,9.791 31,12 L31,26 C31,28.209 29.209,30 27,30 Z" fill="#0099ff"></path>
</g>
</svg>
</a>
<a href="#">
<svg height="36" width="36" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
<path d="M22.5,18.5 L27.998,18.5 C28.8885,18.5 29.335,19.577 28.705,20.207 L20.207,28.705 C19.577,29.335 18.5,28.8885 18.5,27.9975 L18.5,22.5 C18.5,20.291 20.291,18.5 22.5,18.5 M16.5,22.5 L16.5,28 C16.5,28.552 16.052,29 15.5,29 L11,29 C8.791,29 7,27.209 7,25 L7,11 C7,8.791 8.791,7 11,7 L25,7 C27.209,7 29,8.791 29,11 L29,15.5 C29,16.052 28.552,16.5 28,16.5 L22.5,16.5 C19.1865,16.5 16.5,19.1865 16.5,22.5" fill="#0099ff"></path>
</g>
</svg>
</a>
<a href="#">
<svg height="36" width="36" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
<path d="M13.5,11 C12.1195,11 11,12.119 11,13.5 C11,14.881 12.1195,16 13.5,16 C14.8805,16 16,14.881 16,13.5 C16,12.119 14.8805,11 13.5,11 M26.638,21.467 L21.2375,18.767 C19.199,17.7485 16.801,17.7485 14.7625,18.767 L9.362,21.467 C9.1955,21.55 9,21.429 9,21.243 L9,11 C9,9.8955 9.8955,9 11,9 L25,9 C26.1045,9 27,9.8955 27,11 L27,21.243 C27,21.429 26.8045,21.55 26.638,21.467 M25,7 L11,7 C8.7905,7 7,8.791 7,11 L7,25 C7,27.209 8.7905,29 11,29 L25,29 C27.209,29 29,27.209 29,25 L29,11 C29,8.791 27.209,7 25,7" fill="#0099ff"></path>
</g>
</svg>
</a>
</div>
<input type="text" class="input" placeholder="Type a message...">
<a href="#">
<svg class="emoji-btn" height="24" width="24" viewBox="0 0 26 26">
<g fill="none" fill-rule="evenodd">
<polygon points="0,26 26,26 26,0 0,0"></polygon>
<path d="m19.1311,16.73095c-0.4325,-0.3545 -1.0775,-0.302 -1.441,0.122c-1.171,1.3615 -2.883,2.142 -4.697,2.142c-1.8135,0 -3.526,-0.7805 -4.697,-2.142c-0.363,-0.4225 -1.008,-0.4765 -1.441,-0.122c-0.432,0.355 -0.488,0.986 -0.1245,1.408c1.5605,1.8145 3.8435,2.855 6.2625,2.855c2.4195,0 4.702,-1.0405 6.2625,-2.855c0.3635,-0.422 0.3075,-1.053 -0.1245,-1.408m-2.1355,-7.731c-0.9375,0 -1.5,0.75 -1.5,2c0,1.25 0.5625,2 1.5,2c0.9375,0 1.5,-0.75 1.5,-2c0,-1.25 -0.5625,-2 -1.5,-2m-8,0c-0.9375,0 -1.5,0.75 -1.5,2c0,1.25 0.5625,2 1.5,2c0.9375,0 1.5,-0.75 1.5,-2c0,-1.25 -0.5625,-2 -1.5,-2m4.0045,16c-6.6275,0 -12,-5.3725 -12,-12c0,-6.6275 5.3725,-12 12,-12c6.6275,0 12,5.3725 12,12c0,6.6275 -5.3725,12 -12,12" fill="#0099ff"></path>
</g>
</svg>
</a>
<a href="#">
<svg height="36px" width="36px" viewBox="0 1 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0,26 26,26 26,0 0,0"></polygon>
<path d="M10,30 L7.75,30 C6.625,30 6,27.7515306 6,23.3673469 C6,18.9831633 6.625,16.7346939 7.75,16.7346939 L10,16.7346939 C10.552,16.7346939 11,17.1918367 11,17.755102 L11,28.9795918 C11,29.5428571 10.552,30 10,30 M17,6.02040816 C17,5.44540816 17.4195,5.00255102 18,5 C19.2035,5 22,5.79081633 22,10.6122449 C22,12.2443878 21.8015,13.130102 21.7195,13.7163265 C21.719,13.7183673 21.719,13.7204082 21.7185,13.722449 C21.6865,13.9566327 21.872,14.1647959 22.113,14.1647959 C26.908,14.1647959 29.469,15.4336735 29.469,16.7290816 C29.469,17.3612245 29.211,17.9321429 28.7975,18.3535714 C29.513,18.7591837 30,19.5091837 30,20.3780612 C30,21.3642857 29.4255,22.2045918 28.5475,22.5515306 C28.821,22.9326531 28.9845,23.3954082 28.9845,23.8969388 C28.9845,24.9704082 28.3395,25.8653061 27.3365,26.1438776 C27.4285,26.377551 27.4845,26.6290816 27.4845,26.8943878 C27.4845,28.0459184 25.5485,28.9795918 21,28.9795918 C17.675,28.9795918 15.3815,28.3857143 14.5,27.9591837 C13.851,27.6454082 13,27.0770408 13,25.4081633 L13,18.7755102 C13,15.0403061 17.25,13.7760204 17.25,10.1020408 C17.25,7.78826531 17,6.81326531 17,6.02040816" fill="#0099ff"></path>
</g>
</svg>
</a>
</div>
</div>
<div class="rightside">
<div class="rightside-user-info">
<img src="img/user-img.jpg" style="height: 100px; width: 100px;" alt="">
<div class="user-info">
<a href="#" class="user-name">Tahmasib Shirinzadeh</a>
<div class="activity-time">Active 2h ago</div>
</div>
</div>
<!-- accordion collapse -->
<!-- first collapse -->
<details class="cllps">
<summary class="collapsible ">options</summary>
<div class="collapse-area">
<p class="collapse-content" tabindex="0">Search in Conversation
<i class="fas fa-search"></i>
</p>
<p class="collapse-content" tabindex="0">edit nicknames
<svg class=" _6y56" height="22px" width="22px" version="1.1" viewBox="0 0 36 36">
<g fill="none" fill-rule="evenodd" stroke="none" stroke-width="1">
<g>
<mask id="mask-2" fill="white">
<polygon points="0 36 36 36 36 0 0 0"></polygon>
</mask>
<path d="M18.3042,15.77345 L12.9857,26.39495 C12.7662,26.83245 12.4477,27.21345 12.0552,27.50745 L8.2607,30.34495 C7.7407,30.73395 6.9992,30.36245 6.9992,29.71245 L6.9992,24.98495 C6.9992,24.49545 7.1137,24.01295 7.3332,23.57495 L12.6547,12.94745 C12.8522,12.55245 13.3322,12.39195 13.7272,12.58995 L17.9467,14.69895 C18.3422,14.89645 18.5022,15.37795 18.3042,15.77345 Z M19.9172,12.55245 C19.7192,12.94745 19.2392,13.10745 18.8442,12.90995 L14.6247,10.80095 C14.2292,10.60295 14.0692,10.12145 14.2667,9.72595 L15.4537,7.35495 C16.2287,5.80595 18.0962,5.05145 19.6687,5.77695 C21.2937,6.52695 21.9652,8.46245 21.1697,10.04895 L19.9172,12.55245 Z M28.9882,29.66445 C28.9082,30.15645 28.4462,30.49645 27.9477,30.49645 L12.4167,30.49645 C12.0117,30.49645 11.8392,29.98145 12.1632,29.73845 L13.2767,28.90095 C13.6257,28.63845 14.0507,28.49645 14.4877,28.49645 L28.0012,28.49645 C28.6087,28.49645 29.0902,29.03795 28.9882,29.66445 Z" fill="#000" mask="url(#mask-2)"></path>
</g>
</g>
</svg>
</p>
<p class="collapse-content" tabindex="0">change color
<i class="fas fa-dot-circle collapse-content_icon--blue"></i>
</p>
<p class="collapse-content" tabindex="0">change emoji
<svg height="32px" width="36px" viewBox="0 1 36 36">
<g fill="none" fill-rule="evenodd">
<polygon points="0,26 26,26 26,0 0,0"></polygon>
<path d="M10,30 L7.75,30 C6.625,30 6,27.7515306 6,23.3673469 C6,18.9831633 6.625,16.7346939 7.75,16.7346939 L10,16.7346939 C10.552,16.7346939 11,17.1918367 11,17.755102 L11,28.9795918 C11,29.5428571 10.552,30 10,30 M17,6.02040816 C17,5.44540816 17.4195,5.00255102 18,5 C19.2035,5 22,5.79081633 22,10.6122449 C22,12.2443878 21.8015,13.130102 21.7195,13.7163265 C21.719,13.7183673 21.719,13.7204082 21.7185,13.722449 C21.6865,13.9566327 21.872,14.1647959 22.113,14.1647959 C26.908,14.1647959 29.469,15.4336735 29.469,16.7290816 C29.469,17.3612245 29.211,17.9321429 28.7975,18.3535714 C29.513,18.7591837 30,19.5091837 30,20.3780612 C30,21.3642857 29.4255,22.2045918 28.5475,22.5515306 C28.821,22.9326531 28.9845,23.3954082 28.9845,23.8969388 C28.9845,24.9704082 28.3395,25.8653061 27.3365,26.1438776 C27.4285,26.377551 27.4845,26.6290816 27.4845,26.8943878 C27.4845,28.0459184 25.5485,28.9795918 21,28.9795918 C17.675,28.9795918 15.3815,28.3857143 14.5,27.9591837 C13.851,27.6454082 13,27.0770408 13,25.4081633 L13,18.7755102 C13,15.0403061 17.25,13.7760204 17.25,10.1020408 C17.25,7.78826531 17,6.81326531 17,6.02040816" fill="#0099ff"></path>
</g>
</svg>
</p>
</div>
</details>
<!-- end first collapse -->
<!-- second collapse -->
<details class="cllps">
<summary class="collapsible">privacy and support</summary>
<div class="collapse-area">
<p class="collapse-content" tabindex="0">Notification
<i class="fas fa-bell"></i>
</p>
<p class="collapse-content" tabindex="0">ignore messages
<i class="fas fa-ban"></i>
</p>
<p class="collapse-content" tabindex="0">block messages
<i class="fas fa-minus-circle"></i>
</p>
<p class="collapse-content" tabindex="0">something's wrong
<i class="fas fa-exclamation-triangle"></i>
</p>
</div>
</details>
<!-- end second collapse -->
<!-- third collapse -->
<details class="cllps">
<summary class="collapsible">shared files</summary>
</details>
<!-- end third collapse -->
<!-- fourth collapse -->
<details class="cllps">
<summary class="collapsible">shared photos</summary>
</details>
<!-- end fourth collapse -->
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>