Advertisement
Guest User

PinkyToilerBlurGuy

a guest
Oct 13th, 2024
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.04 KB | None | 0 0
  1. :root {
  2.     /* MAIN COLOR VARIABLES */
  3.     --user-text-color: #FFFFFF;
  4.     --user-quote-color: #ADD8E6;
  5.     --user-quote-color-opacity: #a2dcc755;
  6.     --user-em-color: #D65A7E;
  7.     --bot-text-color: #FFFFFF;
  8.     --bot-quote-color: #FEC9DD;
  9.     --bot-quote-color-opacity: #E76F5155;
  10.     --bot-em-color: #6EACDA;
  11.  
  12.     /* FONT STYLE VARIABLES */
  13.     --message-font: 'Aleo';
  14.     --main-text-style: normal;
  15.     --main-text-weight: 200;
  16.     --main-text-size: 1.05rem;
  17.     --italic-weight: 400;
  18.     --italic-style: italic;
  19.     --quote-weight: normal;
  20.     --quote-style: normal;
  21.  
  22.     /* CODEBLOCK VARIABLES */
  23.     --code-font: 'Cartograph CF';
  24.     --code-background: #222222;
  25.     --code-text: #D7E5CA;
  26.     --code-glow: transparent;
  27.     --glow-color: #EEEEEE44;
  28. }
  29.  
  30. #chat
  31. {
  32.     background-color: #0F0E0E;
  33.     padding: 10px;
  34. }
  35.  
  36. body, #chat
  37. {
  38.     background-color: #0F0E0E;
  39.     opacity: 1;
  40. }
  41.  
  42. .mes
  43. {
  44.     padding: 0 !important;
  45.     margin-bottom: 5px !important;
  46.     color: #D3D3D3 !important;
  47.     border-radius: 4px!important;
  48.     background-color: #4e6469 !important;
  49.     border-color: transparent !important;
  50. }
  51.  
  52. .mes br,
  53. .mes p {
  54.     margin-bottom: 1rem;
  55. }
  56.  
  57. .mes_block
  58. {
  59.     padding: 0px;
  60.     margin-left: 0;
  61. }
  62.  
  63. .mes .mesAvatarWrapper {
  64.     min-height: 100%;
  65.     width: 100%;
  66.     padding: 0;
  67.     padding-top: 0;
  68.     width: 8rem;
  69.     height: 100%;
  70. }
  71.  
  72. .mes .mesAvatarWrapper .avatar {
  73.     width: 100% !important;
  74.     height: 100% !important;
  75.     align-content: center;
  76. }
  77.  
  78. .mes .mesAvatarWrapper img {
  79.     height: 100% !important;
  80.     width: 100% !important;
  81.     border-radius: 3px 10px 10px 3px !important;
  82.     object-fit: cover !important;
  83.     opacity: 40%;
  84.     border: 0 !important;
  85.     filter: blur(4px) grayscale(100%);
  86.     transition : all 250ms ease-in-out;
  87. }
  88.  
  89. .mes .mesAvatarWrapper img:hover {
  90.     filter: blur(0px) grayscale(0);
  91. }
  92.  
  93. .mes_button
  94. {
  95.     color: var(--user-text-color);
  96.     opacity: 1;
  97. }
  98.  
  99. .mes_block
  100. {
  101.     transform: none !important;
  102. }
  103.  
  104. .mes_text
  105. {
  106.     padding: 1rem;
  107. }
  108.  
  109. .mes .ch_name
  110. {
  111.     color: var(--user-text-color);
  112.     max-width: 100%;
  113.     width: 100%;
  114.     background-color: transparent;
  115.     justify-content: right;
  116. }
  117.  
  118. .mes .ch_name .flex1
  119. {
  120.     flex: 0 0 0;
  121. }
  122. .mes .name_text
  123. {
  124.     font-family: "Impact";
  125.     max-height: 100%;
  126.     height: 100%;
  127.     max-width: 200px;
  128.     text-size-adjust: auto;
  129.     writing-mode: vertical-lr;
  130.     text-orientation: upright;
  131.     text-align: start;
  132.     position: absolute;
  133.     left: 0rem;
  134.     top: 0rem;
  135.     padding-top: 5px;
  136.     padding-bottom: 5px;
  137.     font-size: 2.5rem;
  138.     line-height: 2rem;
  139.     letter-spacing: -10px;
  140.     font-weight: bolder;
  141.     display: inline-block;
  142.     color: #FEC9DD44;
  143.     pointer-events: none;
  144.     text-transform: uppercase;
  145.     overflow: hidden;
  146.     text-wrap: nowrap;
  147.     -webkit-text-stroke: 1px #111111;
  148. }
  149.  
  150. .mes[is_user="true"]  .name_text
  151. {
  152.     color: #ADD8E644;
  153. }
  154.  
  155. .mes[is_user="true"] {
  156.     color: var(--user-text-color) !important;
  157. }
  158.  
  159. .mes[is_user="true"] p{
  160.     padding: 10px;
  161.     background-color: #111617 !important;
  162.     border-radius: 8px;
  163. }
  164.  
  165. .mes[is_user="true"] p q {
  166.     color: var(--user-quote-color);
  167. }
  168.  
  169. .mes[is_user="true"] p em {
  170.     color: var(--user-em-color);
  171.     font-weight: bold;
  172. }
  173.  
  174. .mes[is_user="false"] {
  175.     color: var(--bot-text-color) !important;
  176.     background-color: #3d2d3d !important;
  177. }
  178.  
  179. .mes[is_user="false"] p{
  180.     padding: 10px;
  181.     background-color: #171117 !important;
  182.     border-radius: 8px;
  183. }
  184.  
  185. .mes[is_user="false"] p q {
  186.     color: var(--bot-quote-color);
  187. }
  188.  
  189. .mes[is_user="false"] p em {
  190.     color: var(--bot-em-color);
  191.     font-weight: bold;
  192. }
  193.  
  194. .mes_text p {
  195.     /* Change base message visuals here */
  196.     font-family: var(--message-font);
  197.     font-size: var(--main-text-size);
  198.     font-style: var(--main-text-style);
  199.     font-weight: var(--main-text-weight);
  200. }
  201.  
  202. .mes_text p em {
  203.     /* Change italics settings (*text formatted like this*) here */
  204.     font-weight: var(--italic-weight);
  205.     font-style: var(--italic-style) !important;
  206.     /* text-shadow: 0px 0px 1px var(--glow-color), 0px 0px 3px var(--glow-color), 0px 0px 3px var(--glow-color) !important; */
  207. }
  208.  
  209. .mes_text p q {
  210.     /* Change quoted text settings ("text formatted like this") here */
  211.     font-weight: var(--quote-weight);
  212.     font-style: var(--quote-style) !important;
  213. }
  214.  
  215. .mes_text code {
  216.     /* Change code settings (`text formatted like this`) here */
  217.     background-color: var(--code-background);
  218.     color: var(--code-text);
  219.     text-shadow: 0px 0px 2px var(--code-glow) !important;
  220.     font-family: var(--code-font);
  221.     line-height: 1.1rem;
  222. }
  223.  
  224. .swipe_left, .swipe_left,.mfc--root span {
  225.     opacity: 1;
  226.     color: #EEEEEEBB;
  227. }
  228.  
  229. .swipe_left::before, .swipe_right::before, .mfc--root span
  230. {
  231.     opacity: 1;
  232.     text-shadow: 2px 2px 3px black !important;
  233. }
  234.  
  235. /* Scrollbar styles for WebKit browsers like Chrome and Safari */
  236. #chat::-webkit-scrollbar {
  237.   width: 14px;
  238.   height: 5px;
  239. }
  240.  
  241. #chat::-webkit-scrollbar-track {
  242.   background: transparent;
  243.   box-shadow: inset 200px 200px 0px 200px #4e6469;
  244.   border-radius: 0px;
  245.   border-left: 5px solid transparent;
  246.   border-right: 5px solid transparent;
  247. }
  248.  
  249. #chat::-webkit-scrollbar-thumb {
  250.   background: #111617;
  251.   border: 4px #4e6469 solid;
  252.   border-radius: 2px !important;
  253.   width: 14px;
  254. }
  255.  
  256. #chat::-webkit-scrollbar-thumb:hover {
  257.   background: #333;
  258. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement