Advertisement
Guest User

Cornerd Theme

a guest
Jul 27th, 2024
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 6.46 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. {
  17.     padding: 10px;
  18. }
  19.  
  20. body
  21. {
  22.     background-color: #16161d;
  23.     opacity: 1;
  24.     background-image:  linear-gradient(30deg, #1F1F28 12%, transparent 12.5%, transparent 87%, #1F1F28 87.5%, #1F1F28), linear-gradient(150deg, #1F1F28 12%, transparent 12.5%, transparent 87%, #1F1F28 87.5%, #1F1F28), linear-gradient(30deg, #1F1F28 12%, transparent 12.5%, transparent 87%, #1F1F28 87.5%, #1F1F28), linear-gradient(150deg, #1F1F28 12%, transparent 12.5%, transparent 87%, #1F1F28 87.5%, #1F1F28), linear-gradient(60deg, #1F1F2877 25%, transparent 25.5%, transparent 75%, #1F1F2877 75%, #1F1F2877), linear-gradient(60deg, #1F1F2877 25%, transparent 25.5%, transparent 75%, #1F1F2877 75%, #1F1F2877);
  25.     background-size: 76px 133px;
  26.     background-position: 0 0, 0 0, 38px 67px, 38px 67px, 0 0, 38px 67px;
  27.     background-repeat: repeat;
  28. }
  29.  
  30. .mes
  31. {
  32.     padding: 0 !important;
  33.     margin-bottom: 5px !important;
  34. }
  35.  
  36. .mes br,
  37. .mes p {
  38.     margin-bottom: 1rem;
  39. }
  40.  
  41. .mes_block
  42. {
  43.     padding: 15px;
  44.     margin-left: 0;
  45.     border-radius: 10px;
  46. }
  47.  
  48. .mes .mesAvatarWrapper {
  49.     min-height: 100%;
  50.     border-radius: 0px 10px 10px 10px !important;
  51.     padding: 4px;
  52.     width: 8rem;
  53.     max-width: 100px;
  54. }
  55.  
  56. .mes .mesAvatarWrapper .avatar {
  57.     width: 98% !important;
  58.     height: auto !important;
  59.     align-content: center;
  60. }
  61.  
  62. .mes .mesAvatarWrapper img {
  63.     width: 100% !important;
  64.     height: auto !important;
  65.     aspect-ratio: 4/6 auto;
  66.     max-height: 144px;
  67.     max-width: 96px;
  68.     border-radius: 0px 8px 8px 8px !important;
  69. }
  70.  
  71. .mes[is_user="true"] {
  72.     color: #EEE !important;
  73.     background: linear-gradient(121deg, rgba(31,31,40,1) 0%, rgba(31,31,40,0) 50%) !important;
  74.     border-radius: 0px 10px 10px 10px !important;
  75.     border: #80a89f 2px solid !important;
  76.     padding: 5px;
  77. }
  78.  
  79. .mes[is_user="true"] .name_text
  80. {
  81.     padding: 5px 10px;
  82.     border-radius: 0px 10px 10px 10px !important;
  83.     background: #80a89f;
  84.     color: #111 !important;
  85.     min-width: 150px;
  86. }
  87.  
  88. .mes[is_user="true"] p q {
  89.     color: #80a89f;
  90. }
  91.  
  92. .mes[is_user="true"] p em {
  93.     color: #F6A06B;
  94.     font-weight: bold;
  95. }
  96.  
  97. .mes[is_user="false"] {
  98.     color: #EEE !important;
  99.     background: linear-gradient(121deg, rgba(31,31,40,1) 0%, rgba(31,31,40,0) 32%) !important;
  100.     border: #9480b6 2px solid !important;
  101.     border-radius: 0px 10px 10px 10px !important;
  102.     padding: 5px;
  103. }
  104. .mes[is_user="false"] .name_text
  105. {
  106.     padding: 5px 10px;
  107.     border-radius: 0px 10px 10px 10px !important;
  108.     background: #9480b6;
  109.     color: #111 !important;
  110.     min-width: 150px;
  111. }
  112.  
  113. .mes[is_user="false"] p q {
  114.     color: #9480b6;
  115. }
  116.  
  117. .mes[is_user="false"] p em {
  118.     color: #da6a78;
  119.     font-weight: bold;
  120. }
  121.  
  122. .mes_text p {
  123.     /* Change base message visuals here */
  124.     font-size: 1.05rem;
  125.     font-family: var(--message-font);
  126.     font-style: var(--main-text-style);
  127.     font-weight: var(--main-text-weight);
  128. }
  129.  
  130. .mes_text p em {
  131.     /* Change italics settings (*text formatted like this*) here */
  132.     font-weight: var(--italic-weight);
  133.     font-style: var(--italic-style) !important;
  134.     /* text-shadow: 0px 0px 1px var(--glow-color), 0px 0px 3px var(--glow-color), 0px 0px 3px var(--glow-color) !important; */
  135. }
  136.  
  137. .mes_text p q {
  138.     /* Change quoted text settings ("text formatted like this") here */
  139.     font-weight: normal;
  140.     font-style: normal;
  141. }
  142.  
  143. .mes_text code {
  144.     /* Change code settings (`text formatted like this`) here */
  145.     background-color: var(--code-background);
  146.     color: var(--code-text);
  147.     text-shadow: 0px 0px 2px var(--code-glow) !important;
  148.     font-family: "Cartograph CF";
  149.     line-height: 1.1rem;
  150. }
  151.  
  152. .swipe_left, .swipe_left,.mfc--root span {
  153.     opacity: 1;
  154.     color: #EEEEEEBB;
  155. }
  156.  
  157. .swipe_left::before, .swipe_right::before, .mfc--root span
  158. {
  159.     opacity: 1;
  160.     text-shadow: 2px 2px 3px black !important;
  161. }
  162.  
  163. /* UI PART */
  164. input[type=range] {
  165.   -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  166.   width: 100%; /* Specific width is required for Firefox. */
  167.   height: 16px !important;
  168.   background: #222 !important; /* Otherwise white in Chrome */
  169.   border-radius: 4px;
  170. }
  171.  
  172. input[type=range]::-webkit-slider-thumb {
  173.   -webkit-appearance: none;
  174. }
  175.  
  176. input[type=range]:focus {
  177.   outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
  178. }
  179.  
  180. input[type=range]::-ms-track {
  181.   width: 100%;
  182.   cursor: pointer;
  183.  
  184.   /* Hides the slider so custom styles can be added */
  185.   background: transparent;
  186.   border-color: transparent;
  187.   color: transparent;
  188. }
  189.  
  190. /* Special styling for WebKit/Blink */
  191. input[type=range]::-webkit-slider-thumb {
  192.   -webkit-appearance: none;
  193.   border: 1px solid #000000;
  194.   height: 16px;
  195.   width: 16px;
  196.   border-radius: 3px;
  197.   background: #9480b6;
  198.   box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
  199. }
  200.  
  201. /* All the same stuff for Firefox */
  202. input[type=range]::-moz-range-thumb {
  203.   border: 1px solid #000000;
  204.   height: 16px;
  205.   width: 16px;
  206.   border-radius: 3px;
  207.   background: #9480b6;
  208.   box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
  209. }
  210.  
  211. /* All the same stuff for IE */
  212. input[type=range]::-ms-thumb {
  213. border: 1px solid #000000;
  214.   height: 16px;
  215.   width: 16px;
  216.   border-radius: 3px;
  217.   background: #365889;
  218.   box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
  219. }
  220.  
  221. #extensions_settings .inline-drawer-toggle.inline-drawer-header, #extensions_settings2 .inline-drawer-toggle.inline-drawer-header, #user-settings-block h4, .standoutHeader
  222. {
  223.     background: #9480b6!important;
  224.     border-radius: 2px;
  225.     color: #222;
  226. }
  227.  
  228. textarea, textarea#customCSS
  229. {
  230.     border: 1px solid #aaa;
  231.     background: #111;
  232. }
  233.  
  234.  
  235. /* SCROLL BAR */
  236. /* Scrollbar styles for WebKit browsers like Chrome and Safari */
  237. #chat::-webkit-scrollbar {
  238.   width: 14px;
  239.   height: 5px;
  240. }
  241.  
  242. #chat::-webkit-scrollbar-track {
  243.   background: transparent;
  244.   box-shadow: inset 200px 200px 0px 200px #80a89f;
  245.   border-radius: 0px;
  246.   border-left: 6px solid transparent;
  247.   border-right: 6px solid transparent;
  248. }
  249.  
  250. #chat::-webkit-scrollbar-thumb {
  251.   background: #222;
  252.   border: 2px #80a89f solid;
  253.     border-radius: 0px 6px 6px 6px !important;
  254.   width: 14px;
  255. }
  256.  
  257. #chat::-webkit-scrollbar-thumb:hover {
  258.   background: #333;
  259. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement