Advertisement
XinChun93

Discord Custom CSS

Jul 16th, 2017
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.51 KB | None | 0 0
  1.  
  2. /*For All Versions*/
  3. .ui-tab-bar-item {
  4. color: #72767d!important;
  5. }
  6. .ui-tab-bar-item:hover {
  7. color: #4f545c!important;
  8. }
  9. .ui-tab-bar-item.selected {
  10. color: #fff!important;
  11. }
  12. .user-name,
  13. .markup,
  14. header,
  15. .member-username > span,
  16. textarea {
  17. font-size: 150%!important;
  18. /*font-size: 120%!important;*/
  19. line-height: 110%!important;
  20. }
  21. .channel-name {
  22. font-size: 130%!important;
  23. /*font-size: 150%!important;*/
  24. line-height: 120%!important;
  25. font-variant: small-caps;
  26. }
  27. .member {
  28. padding-top: 1px;
  29. padding-bottom: 1px;
  30. }
  31. .user-name {
  32. font-weight: bold!important;
  33. }
  34. h2 {
  35. margin-top: 2px!important;
  36. margin-bottom: 2px!important;
  37. }
  38. * {
  39. font-family:
  40. "Noto Sans", "Noto Sans CJK JP",
  41. "Helvetica Neue",
  42. "Kreon",
  43. "Copse",
  44. "Love Ya Like A Sister",
  45. "Pangolin",
  46. "Sintony",
  47. "Schoolbell",
  48. "Architects Daughter",
  49. "Coming Soon",
  50. "Englebert",
  51. "Roboto",
  52. "Osaka",
  53. "FOT-Chiaro Std",
  54. "Hiragino Sans",
  55. "Helvetica Neue",
  56. sans-serif!important;
  57. }
  58. code {
  59. font-size: 150%!important;
  60. line-height: 100%!important;
  61. font-family:
  62. "Monofonto",
  63. "Monofur",
  64. "New", /*"Secret Code", no name in Font Book*/
  65. monospace!important;
  66. }
  67. code.inline {
  68. font-size: 90%!important;
  69. }
  70. .message-group-blocked-btn {
  71. height: 10px;
  72. font-size: 0px!important;
  73. padding: 0!important;
  74. background-color: #c00;
  75. }
  76. .message-group-blocked-btn:hover {
  77. background: #333!important;
  78. }
  79. div[class^=scroller] div[class^=noWrap] {
  80. padding-top: 5px!important;
  81. padding-bottom: 50px!important;
  82. }
  83. div[class^=wrapperUnread],
  84. div[class^=wrapperSelected],
  85. div[class^=wrapperDefault],
  86. div[class^=wrapperHovered],
  87. div[class^=wrapperMutedText] {
  88. height: 32px!important;
  89. margin-top: -6px!important;
  90. }  
  91. div[class^=nameUnread],
  92. div[class^=nameSelected],
  93. div[class^=nameDefault],
  94. div[class^=nameHovered],
  95. div[class^=nameMutedText],
  96. .channel.channel-text a {
  97. padding-top: 0!important;
  98. padding-bottom: 0!important;
  99. margin-top: 0!important;
  100. margin-bottom: 0!important;
  101. line-height: 32px!important;
  102. }
  103. div[class^=nameUnread],
  104. div[class^=nameSelected] {
  105. color: #999!important;
  106. }
  107. .channel-name {
  108. line-height: 24px;
  109. padding-bottom: 0;
  110. }
  111. header {
  112. color: #999!important;
  113. }
  114. .channel.channel-text.unread::before {
  115. background-color: #999!important;
  116. margin-top: -6px;
  117. }
  118. div[class^=nameUnreadText],
  119. div[class^=nameSelectedText] {
  120. color: #999!important;
  121. }
  122. .channel.channel-text.selected::before {
  123. margin-top: 0px;
  124. }
  125. span.bot-tag {
  126.     font-size:100%!important;
  127.     line-height: 100%!important;
  128.     padding-bottom: 3px!important;
  129.     padding-right: 3px!important;
  130. }
  131.  
  132. .message-group-blocked { display: none; }
  133. /*Comment out the line above to show blocked messages.*/
  134.  
  135. /*For Better Discord Only*/
  136.  
  137. .CodeMirror-lines,
  138. .CodeMirror-gutter,
  139. #bd-customcss-attach-controls ,
  140. h2.ui-form-title {
  141. background-color: white!important;
  142. color: #000!important;
  143. cursor: color: black;
  144. }
  145. .CodeMirror-cursor {
  146. border-left: 1px solid #000!important;
  147. }
  148. .CodeMirror-selected {
  149. background-color: #EEE!important;
  150. text-shadow: none;
  151. }
  152. span.cm-qualifier,
  153. span.cm-variable-3,
  154. span.cm-builtin {
  155. border-color: #C93!important;
  156. color: #C93!important;
  157. outline-color: #C93!important;
  158. }
  159. span.cm-string {
  160. border-color: #0C3!important;
  161. color: #0C3!important;
  162. outline-color: #0C3!important;
  163. }
  164.  
  165. /*For Canary Only*/
  166. div[class^="container-"] > div[class^="containerDefault"]:nth-of-type(1) {
  167.     padding-top: 0px;
  168.     padding-bottom: 10px;
  169. }
  170.  
  171. /*For Client Only - comment out on browser version.*/
  172. .content {
  173. margin-right: 11px;
  174. }
  175. .header-toolbar {
  176. padding: 0px!important;
  177. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement