Guest User

Untitled

a guest
Oct 22nd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. html,
  2. body {
  3. width: 100%;
  4. height: 100%;
  5. }
  6.  
  7. html {
  8. overflow: hidden;
  9. }
  10.  
  11. #chat::-webkit-scrollbar-track {
  12. background-color: transparent !important;
  13. }
  14.  
  15. #chat::-webkit-scrollbar,
  16. #chat ::-webkit-scrollbar{
  17. width: 6px !important;
  18. background-color: transparent !important;
  19. }
  20.  
  21. #chat::-webkit-scrollbar-thumb,
  22. #chat ::-webkit-scrollbar-thumb{
  23. background-color: #2f323a !important;
  24. border-radius: 10px !important;
  25. }
  26.  
  27. body {
  28. display: flex !important;
  29. flex-direction: column;
  30. }
  31.  
  32.  
  33. #chat {
  34. overflow-y: auto !important;
  35. flex: 1;
  36. padding: 20px 10px !important;
  37. background: rgba(0, 0, 0, .4) !important;
  38. }
  39.  
  40. footer {
  41. background: rgba(0, 0, 0, .2) !important;
  42. }
  43.  
  44. footer .footer-wrapper {
  45. padding: 20px 10px;
  46. }
  47.  
  48. header,
  49. nav,
  50. aside .info,
  51. #user-settings .tooltip-item:nth-child(2),
  52. #share_button {
  53. display: none !important;
  54. }
  55.  
  56. .counter {
  57. margin: 0 !important;
  58. border-radius: 0 !important;
  59. }
  60.  
  61. #new_message .button {
  62. display: inline-block !important;
  63. }
  64.  
  65. #message_body {
  66. line-height: 20px !important;
  67. font-size: 16px !important;
  68. }
  69.  
  70. .button {
  71. padding: 5px 10px !important;
  72. font-family: inherit;
  73. line-height: 1;
  74. font-size: 13px !important;
  75. border-radius: 5px !important;
  76. border: none !important;
  77. background-color: transparent;
  78. -webkit-transition: background-color .1s ease-out !important;
  79. -moz-transition: background-color .1s ease-out !important;
  80. -o-transition: background-color .1s ease-out !important;
  81. transition: background-color .1s ease-out !important;
  82. color: #e0e0e0 !important;
  83. background-color: #2f323a !important;
  84. background-image: none !important;
  85. box-shadow: none !important;
  86. }
  87.  
  88. .join-button {
  89. padding-left: 33px !important;
  90. }
  91.  
  92. /* top padding on login div */
  93. @media (max-width: 500px) {
  94. .isVirgin .footer-wrapper {
  95. padding: 0 !important;
  96. }
  97. }
  98.  
  99. /* twitter/facebook icons */
  100. .join-button-icon {
  101. width: 26px !important;
  102. height: 26px !important;
  103. top: -1px !important;
  104. left: 5px !important;
  105. }
  106.  
  107. .join-button-icon--fb {
  108. width: 14px !important;
  109. height: 14px !important;
  110. top: 5px !important;
  111. left: 11px !important;
  112. }
Add Comment
Please, Sign In to add comment