Advertisement
Fugu

discord css june 2018

Jun 19th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.24 KB | None | 0 0
  1. .container-2lgZY8,
  2. .appMount-3VJmYg{
  3.     background-color: rgba(5,5,5,1);
  4. }
  5.  
  6. .guilds-wrapper,
  7. .theme-dark .chat,
  8. .theme-dark .title-qAcLxz,
  9. .theme-dark .channel-members,
  10. .theme-dark .friends-table,
  11. .theme-dark .messages-wrapper,
  12. .theme-dark .chat>.content,
  13. .theme-dark .chat form,
  14. .theme-dark .chat form .typing,
  15. .container-RYiLUQ,
  16. .channels-3g2vYe,
  17. .contentSelectedText-3j5CXt,
  18. .contentHoveredText-2HYGIY,
  19. .theme-dark .headerBar-cxbhPD,
  20. .theme-dark #friends,
  21. .theme-dark .friends-table .messages .divider:before,
  22. .theme-dark .friends-table .messages .divider span,
  23. .theme-dark .friends-table .messages .divider.divider-red>div,
  24. .theme-dark .messages-wrapper .messages .divider:before,
  25. .theme-dark .messages-wrapper .messages .divider span,
  26. .theme-dark .messages-wrapper .messages .divider.divider-red>div,
  27. .container-iksrDt,
  28. .theme-dark .typing-3eiiL_,
  29. .theme-dark .members-1998pB,
  30. .theme-dark .title-3qD0b-,
  31. .container-PNkimc,
  32. .channels-Ie2l6A,
  33. .theme-dark .typing-2GQL18,
  34. .contentSelectedText-3wUhMi,
  35. .theme-dark .activityFeed-28jde9,
  36. .theme-dark .card-7JP0BX,
  37. .theme-dark .header-1RC2Wb,
  38. .theme-dark .body-SKIE6r,
  39. .container-2Thooq,
  40. .theme-dark .member-3W1lQa:hover .content-OzHfo4,
  41. .theme-dark .member-3W1lQa.popout-open .content-OzHfo4,
  42. theme-dark .member-3W1lQa.popout-open:hover .content-OzHfo4{
  43.     background: transparent;
  44. }
  45.  
  46. .theme-dark .friends-table .scroller-wrap ::-webkit-scrollbar-thumb,
  47. .theme-dark .messages-wrapper .scroller-wrap ::-webkit-scrollbar-thumb,
  48. .theme-dark .friends-table .scroller-wrap ::-webkit-scrollbar-track-piece,
  49. .theme-dark .messages-wrapper .scroller-wrap ::-webkit-scrollbar-track-piece,
  50. .scroller-wrap .scroller::-webkit-scrollbar-thumb,
  51. .scroller-wrap .scroller::-webkit-scrollbar-track-piece {
  52.     background-color:transparent;
  53.     border: transparent;
  54. }
  55. .theme-dark .friends-table .messages .divider.divider-red>span,
  56. .theme-dark .messages-wrapper .messages .divider.divider-red>span{
  57.     background: rgba(50,50,50,1);
  58. }
  59.  
  60. @keyframes channel{
  61.     from {border-radius:20%;}
  62.     to {border-radius:20%;}
  63. }
  64.  
  65. .guilds-wrapper .guilds .guild .guild-inner {
  66.     animation-name:channel;
  67.     animation-duration: 10s;
  68.     animation-iteration-count:infinite;
  69. }
  70.  
  71. .avatar-large,
  72. .avatar-profile,
  73. .avatar-small,
  74. .avatar-xlarge,
  75. .avatar-xsmall,
  76. .avatar-xxlarge{
  77. border-radius: 20%;}
  78.  
  79. .message-group .accessory{
  80.     display: flex;
  81.     flex-flow: row wrap;
  82. }
  83. .message-group .accessory>*:not(:last-of-type){
  84.     margin-right:10px;
  85. }
  86. .message-group .accessory>*{
  87.     margin-top:5px;
  88. }
  89. .reactions{
  90.     width:100%;
  91.     flex:100%;
  92.     order:9999999999;}
  93.  
  94. .emoji{
  95.     width:22px;
  96.     height:22px;
  97.     -webkit-transition:width 0.5s, height 0.5s;
  98.     vertical-align: middle;
  99. }
  100.  
  101. .emoji.jumboable{
  102.     width:32px;
  103.     height:32px;
  104.     -webkit-transition:width 0.5s, height 0.5s;
  105. }
  106.  
  107. .emoji.jumboable:hover{
  108.     width:100px;
  109.     height:100px;
  110.     -webkit-transition:width 0.5s, height 0.5s;
  111. }
  112. .emoji:hover{
  113.     width:100px;
  114.     height:100px;
  115.     -webkit-transition:width 0.5s, height 0.5s;
  116.     vertical-align: middle;
  117. }
  118.  
  119. .unread-mentions-indicator-top{
  120.     padding:0px;
  121. }
  122.  
  123. .guilds-wrapper .guilds .guild.unread:before{
  124.     background: white;
  125. }
  126.  
  127. .message-group-blocked-btn{
  128.     display:none;
  129. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement