-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
214 lines (188 loc) · 4.03 KB
/
style.css
File metadata and controls
214 lines (188 loc) · 4.03 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background: #e3f2fd;
}
.chatbot-toggler {
position: fixed;
right: 40px;
bottom: 35px;
height: 50px;
width: 50px;
background: #288053;
color: #fff;
border: none;
display: flex;
align-items: center;
justify-content: center;
outline: none;
border-radius: 50%;
cursor: pointer;
}
.chatbot-toggler span {
position: absolute;
}
.hide-icon {
display: none; /* Hides the icon */
}
.chatbot {
width: 420px;
position: fixed;
right: 40px;
bottom: 100px;
overflow: hidden;
background: #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);
transform: scale(0);
opacity: 0;
pointer-events: none;
transition: all 0.3s ease;
}
.show-chatbot {
transform: scale(1);
opacity: 1;
pointer-events: auto;
}
.chatbot header {
background: #288053;
padding: 16px 20px;
text-align: center;
position: relative; /* Ensures close button can be positioned */
}
.chatbot header h2 {
color: #fff;
font-size: 1.4rem;
}
.chatbot header .close-chatbot {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
color: #fff;
cursor: pointer;
font-size: 24px;
}
.chatbot .chatbox {
height: 510px;
overflow-y: auto;
padding: 30px 20px 70px;
}
.chatbox .incoming span {
align-self: flex-end;
height: 32px;
width: 32px;
color: white;
background: #288053;
text-align: center;
line-height: 32px;
border-radius: 4px;
margin: 0 10px 7px 0;
}
.chatbox .outgoing {
margin: 20px 0;
justify-content: flex-end;
}
.chatbox .chat {
display: flex;
}
.chatbox .chat p {
max-width: 75%;
background: #288053;
padding: 12px 16px;
border-radius: 10px 10px 10px 0;
font-size: 0.95rem;
}
.chatbox .incoming p {
color: black;
background: #f2f2f2;
border-radius: 10px 10px 10px 0;
}
.chatbot .chat-input {
position: absolute;
bottom: 0;
width: 100%;
border-top: 1px solid #ccc;
background: #fff;
padding: 5px 20px;
gap: 5px;
}
.chat-input textarea {
height: 55px;
border: none;
outline: none;
font-size: 0.95rem;
resize: none;
padding: 16px 15px 16px 0;
}
.chat-input span {
color: #288053;
font-size: 1.35rem;
cursor: pointer;
visibility: hidden;
align-self: flex-end;
height: 55px;
line-height: 55px;
}
.chat-input textarea:valid ~ span {
visibility: visible;
}
/* Responsive Styling */
@media screen and (max-width: 768px) {
.chatbot {
width: 100%;
right: 0;
bottom: 0;
border-radius: 0;
}
}
@media screen and (max-width: 480px) {
.chatbot {
width: 100%;
right: 0;
bottom: 0;
border-radius: 0;
}
}
/* new to the block */
.chatbot .chat-input {
position: absolute;
bottom: 0;
width: 100%;
border-top: 1px solid #ccc;
background: #fff;
display: flex; /* To align the textarea and icon side by side */
align-items: center;
padding: 10px 15px;
gap: 10px;
}
.chat-input textarea {
width: 100%; /* Ensure the textarea takes the full width */
height: 55px;
border: none;
outline: none;
font-size: 0.95rem;
resize: none;
padding: 15px;
border-radius: 8px;
background-color: #f9f9f9;
}
.chat-input span {
color: #288053;
font-size: 1.35rem;
cursor: pointer;
visibility: hidden; /* Initially hidden */
align-self: center;
}
.chat-input textarea:valid ~ span {
visibility: visible; /* Show the send icon when typing */
}
.chat-input textarea:focus ~ span {
visibility: visible; /* Show the send icon when typing */
}