Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :root {
- --quote-color-primary: #8EACCD;
- --quote-color-secondary: #D2E0FB;
- --glow-color: #EEEEEE44;
- --code-background: #222222;
- --code-text: #D7E5CA;
- --code-glow: transparent;
- --message-font: 'Outfit';
- --italic-weight: 400;
- --italic-style: italic;
- --main-text-style: normal;
- --main-text-weight: 200;
- }
- #chat {
- padding: 10px;
- }
- body {
- background-color: #131e25 !important;
- background: linear-gradient(-45deg, #18273d, #131e25);
- background-size: 150% 150%;
- height: 100vh;
- }
- .mes
- {
- padding: 0 !important;
- margin-bottom: 5px !important;
- }
- .mes br,
- .mes p {
- margin-bottom: 1rem;
- }
- .mes_block
- {
- padding: 15px;
- margin-left: 0;
- background-color: #111111 !important;
- border-radius: 10px;
- }
- .mes .mesAvatarWrapper {
- min-height: 100%;
- border-radius: 5px 0 0 5px;
- padding: 4px;
- width: 8rem;
- max-width: 100px;
- }
- .mes .mesAvatarWrapper .avatar {
- width: 98% !important;
- height: auto !important;
- align-content: center;
- }
- .mes .mesAvatarWrapper img {
- width: 100% !important;
- height: auto !important;
- aspect-ratio: 4/6 auto;
- max-height: 144px;
- max-width: 96px;
- }
- .mes[is_user="true"] {
- color: #eeeeee !important;
- background-color: #0e2525 !important;
- border-radius: 10px !important;
- border: #368989 2px solid !important;
- padding: 5px;
- }
- .mes[is_user="true"] .name_text
- {
- padding: 5px 10px;
- border-radius: 6px;
- background: #368989;
- color: #111 !important;
- box-shadow: 0px 0px 5px 0px #368989 !important;
- min-width: 150px;
- }
- .mes[is_user="true"] p q {
- color: #48b7b7;
- }
- .mes[is_user="true"] p em {
- color: #8cc5af;
- font-weight: bold;
- }
- .mes[is_user="false"] {
- color: #eee !important;
- background-color: #0e1725 !important;
- border: #365889 2px solid !important;
- border-radius: 10px !important;
- padding: 5px;
- }
- .mes[is_user="false"] .name_text
- {
- padding: 5px 10px;
- border-radius: 6px;
- background: #365889;
- color: #111 !important;
- box-shadow: 0px 0px 5px 0px #365889 !important;
- min-width: 150px;
- }
- .mes[is_user="false"] p q {
- color: #4875b7;
- }
- .mes[is_user="false"] p em {
- color: #62abe7;
- font-weight: bold;
- }
- .mes_text p {
- /* Change base message visuals here */
- font-size: 1.05rem;
- font-family: var(--message-font);
- font-style: var(--main-text-style);
- font-weight: var(--main-text-weight);
- }
- .mes_text p em {
- /* Change italics settings (*text formatted like this*) here */
- font-weight: var(--italic-weight);
- font-style: var(--italic-style) !important;
- /* text-shadow: 0px 0px 1px var(--glow-color), 0px 0px 3px var(--glow-color), 0px 0px 3px var(--glow-color) !important; */
- }
- .mes_text p q {
- /* Change quoted text settings ("text formatted like this") here */
- font-weight: normal;
- font-style: normal;
- }
- .mes_text code {
- /* Change code settings (`text formatted like this`) here */
- background-color: var(--code-background);
- color: var(--code-text);
- text-shadow: 0px 0px 2px var(--code-glow) !important;
- font-family: "Victor Mono";
- }
- .swipe_left, .swipe_left,.mfc--root span {
- opacity: 1;
- color: #EEEEEEBB;
- }
- .swipe_left::before, .swipe_right::before, .mfc--root span
- {
- opacity: 1;
- text-shadow: 2px 2px 3px black !important;
- }
- /* Scrollbar styles for WebKit browsers like Chrome and Safari */
- #chat::-webkit-scrollbar {
- width: 14px;
- height: 5px;
- }
- #chat::-webkit-scrollbar-track {
- background: transparent;
- box-shadow: inset 200px 200px 0px 200px #365889;
- border-radius: 4px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- }
- #chat::-webkit-scrollbar-thumb {
- background: #222;
- border: 4px #365889 solid;
- border-radius: 10px;
- width: 14px;
- }
- #chat::-webkit-scrollbar-thumb:hover {
- background: #333;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement