Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :root {
- /* MAIN COLOR VARIABLES */
- --user-text-color: #FFF;
- --user-quote-color: #D65A7E;
- --user-em-color: #D65A7E;
- --bot-text-color: #FFF;
- --bot-quote-color: #D65A7E;
- --bot-em-color: #D65A7E;
- /* FONT STYLE VARIABLES */
- --message-font: 'Outfit';
- --main-text-style: normal;
- --main-text-weight: 200;
- --main-text-size: 1.05rem;
- --italic-weight: 400;
- --italic-style: italic;
- --quote-weight: normal;
- --quote-style: normal;
- /* CODEBLOCK VARIABLES */
- --code-font: 'Cartograph CF';
- --code-background: #222222;
- --code-text: #D7E5CA;
- --code-glow: transparent;
- --glow-color: #EEEEEE44;
- }
- #chat
- {
- background-color: #000;
- padding: 10px;
- }
- body, #chat
- {
- background-color: #000;
- opacity: 1;
- }
- .mes
- {
- padding: 0 !important;
- margin-bottom: 5px !important;
- color: #fff !important;
- border-radius: 0px!important;
- border: #fff 1px solid !important;
- }
- .mes br,
- .mes p {
- margin-bottom: 1rem;
- }
- .mes_block
- {
- padding: 0px;
- margin-left: 0;
- border-radius: 10px;
- }
- .mes .mesAvatarWrapper {
- min-height: 100%;
- border-right: 1px #fff solid;
- 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;
- border-radius: 0px !important;
- }
- .mes_button
- {
- color: #fff;
- opacity: 1;
- }
- .mes_text
- {
- padding: 1rem
- }
- .mes .ch_name
- {
- padding: 5px 10px;
- border-bottom: 1px #fff solid;
- color: var(--user-text-color);
- min-width: 100%;
- }
- .mes[is_user="true"] {
- color: var(--user-text-color);
- }
- .mes[is_user="true"] p q {
- color: var(--user-quote-color);
- }
- .mes[is_user="true"] p em {
- color: var(--user-em-color);
- font-weight: bold;
- }
- .mes[is_user="false"] {
- color: var(--bot-text-color);
- }
- .mes[is_user="false"] p q {
- color: var(--bot-quote-color);
- }
- .mes[is_user="false"] p em {
- color: var(--bot-em-color);
- font-weight: bold;
- }
- .mes_text p {
- /* Change base message visuals here */
- font-family: var(--message-font);
- font-size: var(--main-text-size);
- 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: var(--quote-weight);
- font-style: var(--quote-style) !important;
- }
- .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: var(--code-font);
- line-height: 1.1rem;
- }
- .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;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement