ChatGPT.module.css
3 years ago
ChatGPT.module.scss
3 years ago
iOSDark.module.css
3 years ago
iOSDark.module.scss
3 years ago
iOSDark.module.css
110 lines
| 1 | .mwai-chat .mwai-conversation { |
| 2 | padding: 5px; |
| 3 | overflow: hidden !important; |
| 4 | } |
| 5 | |
| 6 | .mwai-chat .mwai-ai code { |
| 7 | padding-bottom: 20px; |
| 8 | font-size: .85rem; |
| 9 | font-family: monospace !important; |
| 10 | /*scrollbar-color: #666 #343541;*/ |
| 11 | } |
| 12 | |
| 13 | .mwai-chat .mwai-name-text { |
| 14 | display: none; |
| 15 | } |
| 16 | |
| 17 | .mwai-chat .mwai-conversation { |
| 18 | display: flex; |
| 19 | flex-direction: column; |
| 20 | } |
| 21 | |
| 22 | .mwai-chat .mwai-ai { |
| 23 | align-self: flex-start; |
| 24 | } |
| 25 | |
| 26 | .mwai-chat .mwai-user { |
| 27 | align-self: flex-end; |
| 28 | } |
| 29 | |
| 30 | .mwai-chat .mwai-ai { |
| 31 | background-color: #333 !important; |
| 32 | position: relative; |
| 33 | max-width: 255px; |
| 34 | margin-bottom: 15px; |
| 35 | padding: 10px 20px; |
| 36 | font-family: Helvetica Neue,Helvetica,Arial,sans-serif; |
| 37 | line-height: 24px; |
| 38 | word-wrap: break-word; |
| 39 | border-radius: 25px; |
| 40 | } |
| 41 | |
| 42 | .mwai-chat .mwai-ai::before { |
| 43 | width: 20px; |
| 44 | } |
| 45 | |
| 46 | .mwai-chat .mwai-ai::after { |
| 47 | width: 26px; |
| 48 | background: #333 !important; |
| 49 | } |
| 50 | |
| 51 | .mwai-chat .mwai-ai::before, .mwai-chat .mwai-ai::after { |
| 52 | position: absolute; |
| 53 | bottom: 0; |
| 54 | height: 25px; |
| 55 | transition: transform .2s ease-out; |
| 56 | content: ""; |
| 57 | } |
| 58 | |
| 59 | .mwai-chat .mwai-user { |
| 60 | background: #0B93F6 !important; |
| 61 | background-attachment: scroll; |
| 62 | background-attachment: fixed; |
| 63 | position: relative; |
| 64 | border-radius: 20px; |
| 65 | padding: 9px 15px !important; |
| 66 | margin-top: 15px; |
| 67 | margin-bottom: 15px; |
| 68 | display: inline-block; |
| 69 | } |
| 70 | |
| 71 | .mwai-chat .mwai-user::before { |
| 72 | content: ""; |
| 73 | position: absolute; |
| 74 | z-index: 0; |
| 75 | bottom: 0; |
| 76 | right: -8px; |
| 77 | height: 20px; |
| 78 | width: 20px; |
| 79 | background: #0b93f6 !important; |
| 80 | background-attachment: scroll; |
| 81 | background-attachment: fixed; |
| 82 | border-bottom-left-radius: 15px; |
| 83 | } |
| 84 | |
| 85 | .mwai-chat .mwai-user::after { |
| 86 | content: ""; |
| 87 | position: absolute; |
| 88 | z-index: 1; |
| 89 | bottom: 0; |
| 90 | right: -10px; |
| 91 | width: 10px; |
| 92 | height: 20px; |
| 93 | background: #121212; |
| 94 | border-bottom-left-radius: 10px; |
| 95 | } |
| 96 | |
| 97 | .mwai-chat.mwai-window.mwai-open .mwai-header { |
| 98 | display: flex; |
| 99 | } |
| 100 | |
| 101 | .mwai-chat.mwai-window.mwai-open .mwai-content { |
| 102 | display: flex; |
| 103 | transition: opacity 200ms ease-in-out 0s; |
| 104 | opacity: 1; |
| 105 | } |
| 106 | |
| 107 | .mwai-chat.mwai-window.mwai-open .mwai-open-button { |
| 108 | display: none; |
| 109 | } |
| 110 |