Advertisement
Guest User

Untitled

a guest
May 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.head.innerHTML+=`
  2. <style>
  3.  
  4. body {
  5.     background: linear-gradient(to bottom, rgb(32, 32, 32), rgb(64, 64, 64));
  6.     overflow: hidden;
  7. }
  8.  
  9. main section {
  10.     background-color: rgb(32,32,32);
  11. }
  12. main section input {
  13.     font-family: "Calibri";
  14.     background-color: rgba(0, 0, 0, 0.5);
  15.     color: white;
  16.     border: 0;
  17.     width: 100%;
  18.     height: 24px;
  19.     padding-left: 8px;
  20.     box-sizing: border-box;
  21. }
  22.  
  23. header {
  24.     display: none;
  25. }
  26.  
  27. main {
  28.     max-width: none;
  29.     margin: 64px 64px;
  30. }
  31.  
  32. main figure {
  33.     border: 0;
  34.     background-color: rgb(48, 48, 48);
  35. }
  36.  
  37. main figure form {
  38.     background-color: rgb(32,32,32);
  39. }
  40.  
  41. main figcaption {
  42.     background-color: rgb(32,32,32);
  43.     color: white;
  44. }
  45.  
  46. .message-wrap {
  47.     //  background: linear-gradient(to bottom, rgb(232,232,232), rgb(200,200,200));
  48.     border-radius: 16px;
  49.     padding: 8px;
  50.     box-sizing: border-box;
  51.     color: white;
  52.     border-top: 1px solid rgb(244,244,244);
  53. }
  54.  
  55. .message-wrap img {
  56.     display: none;
  57. }
  58.  
  59. #chat-wrap {
  60.     overflow-y: auto;
  61. }
  62.  
  63. ::-webkit-scrollbar {
  64.     width: 12px;
  65.     height: 12px;
  66.     background: rgb(128,128,128);
  67. }
  68. ::-webkit-scrollbar-thumb {
  69.     background: rgb(160,160,160);
  70.     border-radius: 4px;
  71. }
  72.  
  73. main figure #chat-wrap .message-wrap small {
  74.     background-color: rgb(96,96,96);
  75. }
  76.  
  77. </style>
  78. `;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement