-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
254 lines (215 loc) · 5.58 KB
/
style.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
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
/* Exclusv AI Assistant Styles */
/* Chat Interface */
#exclusv-ai-chat {
position: fixed !important;
bottom: 100px !important;
right: 20px !important;
width: 350px !important;
height: 600px !important; /* Changed from 500px to 600px */
display: none !important;
font-family: Arial, sans-serif !important;
z-index: 9999 !important;
flex-direction: column !important;
overflow: hidden !important;
border-radius: 0 !important;
}
#chat-header {
background-color: var(--header-color, #33b89f);
color: white !important;
font-weight: bold !important;
cursor: pointer !important;
border-radius: 0 !important;
padding: 10px 15px !important; /* Add padding to the header */
}
#chat-messages {
flex: 1 !important;
overflow-y: auto !important;
padding: 15px !important;
}
.message {
margin-bottom: 15px !important;
padding: 10px !important;
max-width: 80% !important;
}
.user {
background-color: #e1f5fe !important;
color: #333333 !important;
align-self: flex-end !important;
margin-left: auto !important;
}
.assistant {
background-color: #f1f1f1 !important;
color: #333333 !important;
}
#typing-indicator {
padding: 10px 15px !important;
}
#chat-input {
padding: 15px !important;
margin-top: auto !important;
}
#chat-button {
position: fixed !important;
bottom: 20px !important;
right: 20px !important;
width: 60px !important;
height: 60px !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
cursor: pointer !important;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
transition: transform 0.3s !important;
z-index: 9999 !important;
background-color: var(--header-color, #33b89f) !important; /* Use the header color variable */
border-radius: 50% !important;
opacity: 1 !important;
visibility: visible !important;
}
#chat-button:hover {
transform: scale(1.1) !important;
opacity: 1 !important;
visibility: visible !important;
}
#chat-button i {
color: white !important;
font-size: 24px !important;
}
/* Update the send button style */
#chat-input button,
#submit-email {
background-color: var(--send-button-color, #33b89f) !important; /* Use the same color variable */
color: white !important;
border: none !important;
padding: 5px 10px !important;
cursor: pointer !important;
height: 35.2px !important; /* Set a fixed height for consistency */
line-height: 25px !important; /* Center text vertically */
display: inline-block !important;
box-sizing: border-box !important; /* Ensure padding doesn't affect height */
}
.typing-dots {
display: inline-block !important;
margin-left: 5px !important;
}
.dot {
display: inline-block !important;
animation: typing 1.5s infinite !important;
}
.dot-2 {
animation-delay: 0.2s !important;
}
.dot-3 {
animation-delay: 0.4s !important;
}
@keyframes typing {
0% {
opacity: 0 !important;
}
50% {
opacity: 1 !important;
}
100% {
opacity: 0 !important;
}
}
.card {
display: flex !important;
flex-direction: column !important;
height: 100% !important;
}
.card-body {
flex: 1 !important;
overflow-y: auto !important;
}
.card-footer {
margin-top: auto !important;
}
#exclusv-ai-chat.open {
display: flex !important;
}
#email-capture {
display: none;
padding: 15px !important;
text-align: center !important;
background-color: #f8f9fa !important;
color: #333333 !important;
}
#email-capture h6 {
color: #333333 !important;
font-size: 16px !important; /* Set the font size to 16px */
}
#email-input {
width: 100% !important;
padding: 5px !important;
margin-bottom: 10px !important;
}
/* Add these styles for the email submit button */
#submit-email {
background-color: var(--send-button-color, #33b89f) !important; /* Use the same color variable */
color: white !important;
border: none !important;
padding: 5px 10px !important;
cursor: pointer !important;
/* Remove the transition for background color */
}
/* Remove this hover effect */
/* #submit-email:hover { */
/* background-color: darken(var(--send-button-color, #33b89f), 10%) !important; */
/* } */
.error {
background-color: #ffebee !important;
color: #b71c1c !important;
}
h5 {
font-size: 20px !important;
}
/* Add these styles at the end of the file */
.exclusv-ai-shortcode-readme {
margin-top: 20px;
padding: 15px;
background-color: #f9f9f9;
border: 1px solid #e5e5e5;
border-radius: 4px;
}
.exclusv-ai-shortcode-readme h4 {
margin-top: 0;
margin-bottom: 10px;
color: #23282d;
}
.exclusv-ai-shortcode-readme code {
display: inline-block;
padding: 3px 5px;
font-size: 13px;
background-color: #e5e5e5;
border-radius: 3px;
}
#chat-header h5 {
font-size: 20px !important;
margin: 0 !important; /* Remove default margins */
padding: 5px 0 !important; /* Add vertical padding */
}
/* Add this at the end of the file */
#chat-powered-by {
font-size: 12px !important;
text-align: center !important;
padding: 5px !important;
background-color: #f8f9fa !important;
border-top: 1px solid #e9ecef !important;
}
#chat-powered-by a {
color: #33b89f !important;
text-decoration: none !important;
}
#chat-powered-by a:hover {
text-decoration: underline !important;
}
/* Style links within the chat messages */
#chat-messages a {
color: var(--send-button-color, #33b89f) !important; /* Use the send button color */
text-decoration: underline !important; /* Ensure links are underlined */
}
#chat-messages a:hover {
color: var(--send-button-color, #33b89f) !important; /* Keep the same color on hover */
text-decoration: underline !important; /* Maintain underline on hover */
}