Advertisement
Guest User

Untitled

a guest
Jun 26th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.71 KB | None | 0 0
  1. :root {
  2.     --quote-color-primary: #8EACCD;
  3.     --quote-color-secondary: #D2E0FB;
  4.     --glow-color: #EEEEEE44;
  5.     --code-background: #222222;
  6.     --code-text: #D7E5CA;
  7.     --code-glow: transparent;
  8.     --message-font: 'Outfit';
  9.     --italic-weight: 400;
  10.     --italic-style: italic;
  11.     --main-text-style: normal;
  12.     --main-text-weight: 200;
  13. }
  14.  
  15. #chat {
  16.     padding: 10px;
  17. }
  18.  
  19. body {
  20.     background-color: #131e25 !important;
  21.     background: linear-gradient(-45deg, #18273d, #131e25);
  22.     background-size: 150% 150%;
  23.     height: 100vh;
  24. }
  25.  
  26. .mes
  27. {
  28.     padding: 0 !important;
  29.     margin-bottom: 5px !important;
  30. }
  31.  
  32. .mes br,
  33. .mes p {
  34.     margin-bottom: 1rem;
  35. }
  36.  
  37. .mes_block
  38. {
  39.     padding: 15px;
  40.     margin-left: 0;
  41.     background-color: #111111 !important;
  42.     border-radius: 10px;
  43. }
  44.  
  45. .mes .mesAvatarWrapper {
  46.     min-height: 100%;
  47.     border-radius: 5px 0 0 5px;
  48.     padding: 4px;
  49.     width: 8rem;
  50.     max-width: 100px;
  51. }
  52.  
  53. .mes .mesAvatarWrapper .avatar {
  54.     width: 98% !important;
  55.     height: auto !important;
  56.     align-content: center;
  57. }
  58.  
  59. .mes .mesAvatarWrapper img {
  60.     width: 100% !important;
  61.     height: auto !important;
  62.     aspect-ratio: 4/6 auto;
  63.     max-height: 144px;
  64.     max-width: 96px;
  65. }
  66.  
  67. .mes[is_user="true"] {
  68.     color: #eeeeee !important;
  69.     background-color: #0e2525 !important;
  70.     border-radius: 10px !important;
  71.     border: #368989  2px solid !important;
  72.     padding: 5px;
  73. }
  74.  
  75. .mes[is_user="true"] .name_text
  76. {
  77. padding: 5px 10px;
  78. border-radius: 6px;
  79. background: #368989;
  80. color: #111 !important;
  81. box-shadow: 0px 0px 5px 0px #368989 !important;
  82. min-width: 150px;
  83. }
  84.  
  85. .mes[is_user="true"] p q {
  86.     color: #48b7b7;
  87. }
  88.  
  89. .mes[is_user="true"] p em {
  90.     color: #8cc5af;
  91.     font-weight: bold;
  92. }
  93.  
  94. .mes[is_user="false"] {
  95.     color: #eee !important;
  96.     background-color: #0e1725 !important;  
  97.     border: #365889 2px solid !important;
  98.     border-radius: 10px !important;
  99.     padding: 5px;
  100. }
  101. .mes[is_user="false"] .name_text
  102. {
  103. padding: 5px 10px;
  104. border-radius: 6px;
  105. background: #365889;
  106. color: #111 !important;
  107. box-shadow: 0px 0px 5px 0px #365889 !important;
  108. min-width: 150px;
  109. }
  110.  
  111. .mes[is_user="false"] p q {
  112.     color: #4875b7;
  113. }
  114.  
  115. .mes[is_user="false"] p em {
  116.     color: #62abe7;
  117.     font-weight: bold;
  118. }
  119.  
  120. .mes_text p {
  121.     /* Change base message visuals here */
  122.     font-size: 1.05rem;
  123.     font-family: var(--message-font);
  124.     font-style: var(--main-text-style);
  125.     font-weight: var(--main-text-weight);
  126. }
  127.  
  128. .mes_text p em {
  129.     /* Change italics settings (*text formatted like this*) here */
  130.     font-weight: var(--italic-weight);
  131.     font-style: var(--italic-style) !important;
  132.     /* text-shadow: 0px 0px 1px var(--glow-color), 0px 0px 3px var(--glow-color), 0px 0px 3px var(--glow-color) !important; */
  133. }
  134.  
  135. .mes_text p q {
  136.     /* Change quoted text settings ("text formatted like this") here */
  137.     font-weight: normal;
  138.     font-style: normal;
  139. }
  140.  
  141. .mes_text code {
  142.     /* Change code settings (`text formatted like this`) here */
  143.     background-color: var(--code-background);
  144.     color: var(--code-text);
  145.     text-shadow: 0px 0px 2px var(--code-glow) !important;
  146.     font-family: "Victor Mono";
  147. }
  148.  
  149. .swipe_left, .swipe_left,.mfc--root span {
  150.     opacity: 1;
  151.     color: #EEEEEEBB;
  152. }
  153.  
  154. .swipe_left::before, .swipe_right::before, .mfc--root span
  155. {
  156.     opacity: 1;
  157.     text-shadow: 2px 2px 3px black !important;
  158. }
  159.  
  160. /* Scrollbar styles for WebKit browsers like Chrome and Safari */
  161. #chat::-webkit-scrollbar {
  162.   width: 14px;
  163.   height: 5px;
  164. }
  165.  
  166. #chat::-webkit-scrollbar-track {
  167.   background: transparent;
  168.   box-shadow: inset 200px 200px 0px 200px #365889;
  169.   border-radius: 4px;
  170.   border-left: 5px solid transparent;
  171.   border-right: 5px solid transparent;
  172. }
  173.  
  174. #chat::-webkit-scrollbar-thumb {
  175.   background: #222;
  176.   border: 4px #365889 solid;
  177.   border-radius: 10px;
  178.   width: 14px;
  179. }
  180.  
  181. #chat::-webkit-scrollbar-thumb:hover {
  182.   background: #333;
  183. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement