assistants.php
3 years ago
chatbot-chatgpt.css
3 years ago
chatbot-chatgpt.scss
3 years ago
chatbot.php
3 years ago
chatbot-chatgpt.scss
450 lines
| 1 | #mwai-chat-id { |
| 2 | --mwai-spacing: 15px; |
| 3 | --mwai-fontSize: 15px; |
| 4 | --mwai-borderRadius: 10px; |
| 5 | --mwai-fontColor: #FFFFFF; |
| 6 | --mwai-backgroundPrimaryColor: #454654; |
| 7 | --mwai-backgroundSecondaryColor: #343541; |
| 8 | --mwai-aiAvatarBackgroundColor: #10a37f; |
| 9 | --mwai-userAvatarBackgroundColor: #135ea4; |
| 10 | --mwai-headerButtonsColor: #FFFFFF; |
| 11 | |
| 12 | .mwai-open-button { |
| 13 | position: absolute; |
| 14 | right: 0; |
| 15 | bottom: 0; |
| 16 | transition: all 0.2s ease-out; |
| 17 | z-index: 9999; |
| 18 | |
| 19 | &:hover { |
| 20 | cursor: pointer; |
| 21 | filter: saturate(2.5) hue-rotate(5deg); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | .mwai-content { |
| 26 | background: var(--mwai-backgroundSecondaryColor); |
| 27 | color: var(--mwai-fontColor); |
| 28 | font-size: var(--mwai-fontSize); |
| 29 | border-radius: var(--mwai-borderRadius); |
| 30 | overflow: hidden; |
| 31 | display: flex; |
| 32 | flex-direction: column; |
| 33 | } |
| 34 | |
| 35 | .mwai-conversation { |
| 36 | overflow: auto; |
| 37 | } |
| 38 | |
| 39 | * { |
| 40 | box-sizing: border-box; |
| 41 | } |
| 42 | |
| 43 | a { |
| 44 | color: #2196f3; |
| 45 | } |
| 46 | |
| 47 | h1 { |
| 48 | font-size: 200%; |
| 49 | } |
| 50 | |
| 51 | h2 { |
| 52 | font-size: 160%; |
| 53 | } |
| 54 | |
| 55 | h3 { |
| 56 | font-size: 140%; |
| 57 | } |
| 58 | |
| 59 | h4 { |
| 60 | font-size: 120%; |
| 61 | } |
| 62 | |
| 63 | pre { |
| 64 | color: var(--mwai-fontColor); |
| 65 | border-radius: var(--mwai-borderRadius); |
| 66 | padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing); |
| 67 | break-after: auto; |
| 68 | font-size: 95%; |
| 69 | font-family: system-ui; |
| 70 | background: #343541; |
| 71 | |
| 72 | code { |
| 73 | padding: 0 !important; |
| 74 | font-family: system-ui; |
| 75 | background: #343541; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | ol { |
| 80 | padding: 0; |
| 81 | margin: 0 0 0 20px; |
| 82 | } |
| 83 | .mwai-reply { |
| 84 | display: flex; |
| 85 | padding: var(--mwai-spacing); |
| 86 | } |
| 87 | |
| 88 | .mwai-ai, .mwai-system { |
| 89 | background: var(--mwai-backgroundPrimaryColor); |
| 90 | } |
| 91 | |
| 92 | .mwai-name { |
| 93 | color: #a0a0a0; |
| 94 | margin-right: 20px; |
| 95 | |
| 96 | .mwai-avatar { |
| 97 | width: 40px; |
| 98 | height: 40px; |
| 99 | background: var(--mwai-aiAvatarBackgroundColor); |
| 100 | display: flex; |
| 101 | align-items: center; |
| 102 | justify-content: center; |
| 103 | border-radius: 5px; |
| 104 | overflow: hidden; |
| 105 | |
| 106 | img { |
| 107 | max-width: 100%; |
| 108 | max-height: 100%; |
| 109 | } |
| 110 | |
| 111 | &.mwai-svg img { |
| 112 | width: 28px; |
| 113 | height: 28px; |
| 114 | filter: brightness(0) invert(1); |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | .mwai-user { |
| 120 | |
| 121 | .mwai-name { |
| 122 | |
| 123 | .mwai-avatar { |
| 124 | background: var(--mwai-userAvatarBackgroundColor); |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | .mwai-text { |
| 130 | flex: auto; |
| 131 | >* { |
| 132 | &:first-child { |
| 133 | margin-top: 0; |
| 134 | } |
| 135 | &:last-child { |
| 136 | margin-bottom: 0; |
| 137 | } |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | .mwai-input { |
| 142 | display: flex; |
| 143 | padding: var(--mwai-spacing); |
| 144 | border-top: 1px solid var(--mwai-backgroundPrimaryColor); |
| 145 | |
| 146 | textarea { |
| 147 | background: var(--mwai-backgroundPrimaryColor); |
| 148 | color: var(--mwai-fontColor); |
| 149 | flex: auto; |
| 150 | padding: calc(var(--mwai-spacing) / 2) var(--mwai-spacing); |
| 151 | border: none; |
| 152 | border-radius: 5px; |
| 153 | font-size: var(--mwai-fontSize); |
| 154 | resize: none; |
| 155 | font-family: inherit; |
| 156 | line-height: calc(var(--mwai-spacing) * 2); |
| 157 | margin: 0; |
| 158 | |
| 159 | &:focus { |
| 160 | outline: none; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | button { |
| 165 | background: none; |
| 166 | color: var(--mwai-fontColor); |
| 167 | background-color: var(--mwai-backgroundSecondaryColor); |
| 168 | border: 1px solid var(--mwai-backgroundPrimaryColor); |
| 169 | margin-left: var(--mwai-spacing); |
| 170 | width: 80px; |
| 171 | border-radius: 5px; |
| 172 | cursor: pointer; |
| 173 | transition: all 0.2s ease-out; |
| 174 | max-height: 60px; |
| 175 | |
| 176 | &:hover { |
| 177 | background: var(--mwai-backgroundPrimaryColor); |
| 178 | } |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | button { |
| 183 | position: relative; |
| 184 | } |
| 185 | |
| 186 | button[disabled]] { |
| 187 | |
| 188 | span { |
| 189 | display: none; |
| 190 | } |
| 191 | |
| 192 | &::after { |
| 193 | content: ''; |
| 194 | position: absolute; |
| 195 | width: 18px; |
| 196 | height: 18px; |
| 197 | top: 0; |
| 198 | left: 0; |
| 199 | right: 0; |
| 200 | bottom: 0; |
| 201 | margin: auto; |
| 202 | border: 3px solid transparent; |
| 203 | border-top-color: var(--mwai-fontColor); |
| 204 | border-radius: 50%; |
| 205 | animation: mwai-button-spinner 1s ease infinite; |
| 206 | } |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | #mwai-chat-id.mwai-window { |
| 211 | position: fixed; |
| 212 | right: 30px; |
| 213 | bottom: 30px; |
| 214 | width: 460px; |
| 215 | z-index: 9999; |
| 216 | |
| 217 | .mwai-header { |
| 218 | display: none; |
| 219 | justify-content: flex-end; |
| 220 | align-items: center; |
| 221 | |
| 222 | .mwai-resize-button { |
| 223 | justify-content: center; |
| 224 | height: 40px; |
| 225 | width: 36px; |
| 226 | cursor: pointer; |
| 227 | display: flex; |
| 228 | justify-content: center; |
| 229 | align-items: center; |
| 230 | |
| 231 | &:before { |
| 232 | transition: all 0.2s ease-out; |
| 233 | content: ' '; |
| 234 | cursor: pointer; |
| 235 | position: absolute; |
| 236 | height: 15px; |
| 237 | width: 15px; |
| 238 | opacity: 0.75; |
| 239 | border: 2px solid var(--mwai-headerButtonsColor); |
| 240 | } |
| 241 | |
| 242 | &:hover:before { |
| 243 | width: 20px; |
| 244 | height: 20px; |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | .mwai-close-button { |
| 249 | justify-content: center; |
| 250 | height: 40px; |
| 251 | width: 35px; |
| 252 | cursor: pointer; |
| 253 | } |
| 254 | |
| 255 | .mwai-close-button:before, .mwai-close-button:after { |
| 256 | content: ' '; |
| 257 | cursor: pointer; |
| 258 | position: absolute; |
| 259 | height: 30px; |
| 260 | width: 2px; |
| 261 | background-color: var(--mwai-headerButtonsColor); |
| 262 | opacity: 0.75; |
| 263 | } |
| 264 | |
| 265 | .mwai-close-button { |
| 266 | &:before { |
| 267 | transition: all 0.2s ease-out; |
| 268 | transform: translate(16px, 5px) rotate(45deg); |
| 269 | } |
| 270 | &:after { |
| 271 | transition: all 0.2s ease-out; |
| 272 | transform: translate(16px, 5px) rotate(-45deg); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | .mwai-close-button:hover { |
| 277 | &:before { |
| 278 | opacity: 1; |
| 279 | transform: translate(16px, 5px) rotate(135deg); |
| 280 | } |
| 281 | &:after { |
| 282 | opacity: 1; |
| 283 | transform: translate(16px, 5px) rotate(45deg); |
| 284 | } |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | .mwai-content { |
| 289 | display: none; |
| 290 | opacity: 0; |
| 291 | max-height: 40vh; |
| 292 | } |
| 293 | |
| 294 | &.mwai-bottom-left { |
| 295 | bottom: 30px; |
| 296 | right: inherit; |
| 297 | left: 30px; |
| 298 | |
| 299 | .mwai-open-button { |
| 300 | right: inherit; |
| 301 | left: 0; |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | &.mwai-top-right { |
| 306 | top: 30px; |
| 307 | bottom: inherit; |
| 308 | right: 30px; |
| 309 | |
| 310 | .mwai-open-button { |
| 311 | top: 0; |
| 312 | bottom: inherit; |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | &.mwai-top-left { |
| 317 | top: 30px; |
| 318 | bottom: inherit; |
| 319 | right: inherit; |
| 320 | left: 30px; |
| 321 | |
| 322 | .mwai-open-button { |
| 323 | top: 0; |
| 324 | bottom: inherit; |
| 325 | right: inherit; |
| 326 | left: 0; |
| 327 | } |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | // GALLERY |
| 332 | |
| 333 | #mwai-chat-id .mwai-gallery { |
| 334 | display: grid; |
| 335 | grid-template-columns: repeat(3, 1fr); |
| 336 | grid-gap: 5px; |
| 337 | |
| 338 | img { |
| 339 | width: 100%; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | // FULLSCREEN & WINDOW |
| 344 | |
| 345 | #mwai-chat-id.mwai-window.mwai-fullscreen { |
| 346 | .mwai-resize-button { |
| 347 | |
| 348 | &:before { |
| 349 | width: 20px; |
| 350 | height: 20px; |
| 351 | } |
| 352 | |
| 353 | &:hover:before { |
| 354 | width: 15px; |
| 355 | height: 15px; |
| 356 | } |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | #mwai-chat-id.mwai-fullscreen:not(.mwai-window), #mwai-chat-id.mwai-fullscreen.mwai-window.mwai-open { |
| 361 | position: fixed; |
| 362 | left: 0; |
| 363 | right: 0; |
| 364 | bottom: 0; |
| 365 | top: 0; |
| 366 | width: inherit; |
| 367 | height: inherit; |
| 368 | max-height: inherit; |
| 369 | max-width: inherit; |
| 370 | display: flex; |
| 371 | flex-direction: column; |
| 372 | margin: 0; |
| 373 | |
| 374 | .mwai-content { |
| 375 | height: 100%; |
| 376 | max-height: inherit; |
| 377 | border-radius: inherit; |
| 378 | |
| 379 | .mwai-conversation { |
| 380 | flex: auto; |
| 381 | } |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | #mwai-chat-id.mwai-window.mwai-open { |
| 386 | |
| 387 | .mwai-header { |
| 388 | display: flex; |
| 389 | } |
| 390 | |
| 391 | .mwai-content { |
| 392 | display: flex; |
| 393 | transition: opacity 200ms ease-in-out 0s; |
| 394 | opacity: 1; |
| 395 | } |
| 396 | |
| 397 | .mwai-open-button { |
| 398 | display: none; |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | @media (max-width: 760px) { |
| 403 | |
| 404 | #mwai-chat-id { |
| 405 | |
| 406 | &.mwai-window { |
| 407 | left: 10px; |
| 408 | right: 10px; |
| 409 | bottom: 10px; |
| 410 | width: calc(100% - 20px); |
| 411 | z-index: 9999999999; |
| 412 | } |
| 413 | |
| 414 | .mwai-reply { |
| 415 | flex-direction: column; |
| 416 | } |
| 417 | |
| 418 | .mwai-input { |
| 419 | flex-direction: column; |
| 420 | |
| 421 | button { |
| 422 | margin: 15px 0 0 0; |
| 423 | height: 40px; |
| 424 | width: inherit; |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | .mwai-name { |
| 429 | margin-right: 0; |
| 430 | max-width: inherit; |
| 431 | } |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | @keyframes mwai-button-spinner { |
| 436 | |
| 437 | from { |
| 438 | transform: rotate(0turn); |
| 439 | } |
| 440 | to { |
| 441 | transform: rotate(1turn); |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | // WordPress Admin Bar |
| 446 | |
| 447 | .admin-bar #mwai-chat-id.mwai-fullscreen:not(.mwai-window), |
| 448 | .admin-bar #mwai-chat-id.mwai-fullscreen.mwai-window.mwai-open { |
| 449 | top: 32px; |
| 450 | } |