-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
209 lines (179 loc) · 3.35 KB
/
index.css
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
:root {
--primary-color: #724ae8;
}
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
border: none;
outline: none;
list-style: none;
}
body {
background-color: #d6dce1;
font-family: "Poppins", sans-serif;
}
/* =================================
Open and Close Chat Bot Box
================================*/
.chatbot-toggler {
position: fixed;
right: 40px;
bottom: 35px;
width: 50px;
aspect-ratio: 1/1;
color: #fff;
background-color: var(--primary-color);
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.chatbot-toggler span {
position: absolute;
}
.show-chatbot .chatbot-toggler span:first-child,
.chatbot-toggler span:last-child {
opacity: 0;
}
.show-chatbot .chatbot-toggler span:last-child {
opacity: 1;
}
/* ===============
Chat Bot
============== */
.chatbot {
transform: scale(0.5);
opacity: 0;
pointer-events: none;
position: fixed;
right: 40px;
bottom: 100px;
width: 420px;
background-color: #fff;
border-radius: 15px;
box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
0 32px 64px -48px rgba(0, 0, 0, 0.5);
overflow: hidden;
}
.show-chatbot .chatbot {
transform: scale(01);
opacity: 1;
pointer-events: auto;
}
/* ================
Chat BOt Title
=============== */
.chatbot header {
background-color: var(--primary-color);
padding: 16px 0;
text-align: center;
position: relative;
}
.chatbot header h2 {
color: #fff;
font-size: 1.4rem;
}
.chatbot header span {
display: none;
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
color: #fff;
cursor: pointer;
}
/* ===========================
Chat Bot Box Conversation
===========================*/
.chatbot .chatbox {
height: 510px;
overflow-y: auto;
padding: 30px 20px 70px;
}
.chatbox .chat {
display: flex;
}
.chatbot .chat p {
color: #fff;
max-width: 75%;
font-size: 0.95rem;
padding: 12px 16px;
border-radius: 10px 10px 0 10px;
background-color: var(--primary-color);
}
/* ================
For Bot
=============== */
.chatbox .incoming p {
background-color: #f2f2f2;
color: #000;
}
.chatbox .incoming span {
align-self: flex-end;
width: 32px;
aspect-ratio: 1/1;
color: #fff;
background-color: var(--primary-color);
text-align: center;
line-height: 32px;
border-radius: 4px;
margin: 0 10px 7px 0;
}
/* =============
For person
============= */
.chatbox .outgoing {
margin: 12px 0;
justify-content: flex-end;
}
/* ===================
Chat Form Input
===================*/
.chatbot .chat-input {
position: absolute;
bottom: 0;
width: 100%;
background-color: #fff;
padding: 5px 20px;
border-top: 1px solid #ccc;
display: flex;
gap: 5px;
align-items: center;
}
.chat-input textarea {
width: 100%;
height: 55px;
resize: none;
font-size: 0.95rem;
padding: 16px 15px 16px 0;
font-weight: 500;
}
.chat-input span {
color: var(--primary-color);
font-size: 1.35rem;
cursor: pointer;
visibility: hidden;
}
.chat-input textarea:valid ~ span {
visibility: visible;
}
@media (max-width: 490px) {
.chatbot {
right: 0;
bottom: 0;
width: 100%;
height: 100%;
border-radius: 0;
}
.chatbot .chatbox {
height: 90%;
}
.chatbot header span {
display: block;
}
}