-
Notifications
You must be signed in to change notification settings - Fork 0
/
blue-gradient.html
126 lines (121 loc) · 6.74 KB
/
blue-gradient.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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/main.css">
<title>wpSmsChatBox </title>
</head>
<body>
<div class="wpsms-chatbox wpsms-chatbox--rtl wpsms-chatbox--blue-theme-gradient">
<button class="wpsms-chatbox__button js-wpsms-chatbox__button wpsms-chatbox__button--circle wpsms-chatbox__button--rounded wpsms-chatbox--bobbles">
<span class="wpsms-chatbox__button-icon messenger">
<img src="assets/img/message.svg" loading="lazy" width="20"
height="20" alt="message"></span>
</button>
<span class="wpsms-chatbox__button-bobbles-title">How Can I Help You?</span>
<div class="wpsms-chatbox__content wpsms-chatbox__content--fade">
<div class="wpsms-chatbox__header">
<h2>Meet Our Team</h2>
<button class="wpsms-chatbox__close-button js-wpsms-chatbox__close-button">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 11L6 6L11 11M11 1L5.99905 6L1 1" stroke="white" stroke-width="1.5"
stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
<div class="wpsms-chatbox__elements">
<div class="wpsms-chatbox__container">
<div class="wpsms-chatbox__teams">
<div class="wpsms-chatbox__team">
<div class="wpsms-chatbox__team-avatar">
<span class="wpsms-chatbox__team-icon messenger">
<img src="assets/img/message.svg" loading="lazy" width="12" height="12" alt="message">
</span>
<img class="wpsms-chatbox__team-avatar-img" src="assets/img/avatar.png" loading="lazy"
width="56" height="56" alt="Eli Burg">
</div>
<div class="wpsms-chatbox__team-info">
<ul class="wpsms-chatbox__team-list">
<li class="wpsms-chatbox__team-item">Support</li>
<li class="wpsms-chatbox__team-item wpsms-chatbox__team-name">Eli Burg</li>
<li class="wpsms-chatbox__team-item wpsms-chatbox__team-status"><span class="dot"></span>
<span>Available from 15 to 20:00</span>
</li>
</ul>
</div>
</div>
<div class="wpsms-chatbox__team">
<div class="wpsms-chatbox__team-avatar">
<span class="wpsms-chatbox__team-icon messenger">
<img src="assets/img/message.svg" loading="lazy" width="12" height="12" alt="message">
</span>
<img class="wpsms-chatbox__team-avatar-img" src="assets/img/avatar.png" loading="lazy"
width="56" height="56" alt="Eli Burg">
</div>
<div class="wpsms-chatbox__team-info">
<ul class="wpsms-chatbox__team-list">
<li class="wpsms-chatbox__team-item">Support</li>
<li class="wpsms-chatbox__team-item wpsms-chatbox__team-name">Eli Burg</li>
<li class="wpsms-chatbox__team-item wpsms-chatbox__team-status"><span class="dot online"></span>
<span>Available</span>
</li>
</ul>
</div>
</div>
<div class="wpsms-chatbox__team">
<div class="wpsms-chatbox__team-avatar">
<span class="wpsms-chatbox__team-icon messenger">
<img src="assets/img/message.svg" loading="lazy" width="12" height="12" alt="message">
</span>
<img class="wpsms-chatbox__team-avatar-img" src="assets/img/avatar.png" loading="lazy"
width="56" height="56" alt="Eli Burg">
</div>
<div class="wpsms-chatbox__team-info">
<ul class="wpsms-chatbox__team-list">
<li class="wpsms-chatbox__team-item">Support</li>
<li class="wpsms-chatbox__team-item wpsms-chatbox__team-name">Eli Burg</li>
<li class="wpsms-chatbox__team-item wpsms-chatbox__team-status"><span class="online dot"></span>
<span>Available</span>
</li>
</ul>
</div>
</div>
</div>
<div class="wpsms-chatbox__articles">
<ul>
<li class="wpsms-chatbox__articles-header">Related Articles</li>
<li class="wpsms-chatbox__article">
<a href="" title="How teammates get notifications">
How teammates get notifications
<span><img src="assets/img/arrow-right.svg" alt="How teammates get notifications"></span>
</a>
</li>
<li class="wpsms-chatbox__article">
<a href="" title="How teammates get notifications">
How teammates get notifications
<span><img src="assets/img/arrow-right.svg" alt="How teammates get notifications"></span>
</a>
</li>
<li class="wpsms-chatbox__article">
<a href="" title="How teammates get notifications">
How teammates get notifications
<span><img src="assets/img/arrow-right.svg" alt="How teammates get notifications"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="wpsms-chatbox__info">
<div>
WhatsApp Chat is free, download and try it now <a href="">here!</a>
</div>
</div>
<span class="wpsms-chatbox__arrow"><i></i></span>
</div>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>