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