Advertisement
SirFulgeruL

Youtube Chat Transparent CSS

Jul 2nd, 2016
3,590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Titillium+Web:900);
  2. @import url(https://fonts.googleapis.com/css?family=Raleway:800);
  3.  
  4.  
  5. /*hide color bar*/
  6. .accent-bar {
  7. display: none;
  8. }
  9.  
  10. /*style username*/
  11. .live-chat-widget .comment .author a {
  12. font-size: 27px;
  13. font-family: 'Titillium Web', sans-serif;
  14. color:#debc00;
  15. text-shadow:
  16. 1px 3px 0px #000, 2px 2px 0px #000, 3px 1px 0px #000, 3px 0px 0px #000, 3px -1px 0px #000, 2px -2px 0px #000, 1px -3px 0px #000,
  17. -1px 3px 0px #000, -2px 2px 0px #000, -3px 1px 0px #000, -3px 0px 0px #000, -3px -1px 0px #000, -2px -2px 0px #000, -1px -3px 0px #000,
  18. 3px 1px 0px #000, 2px 2px 0px #000, 1px 3px 0px #000, 0px 3px 0px #000, -1px 3px 0px #000, -2px 2px 0px #000, -3px 1px 0px #000,
  19. 3px -1px 0px #000, 2px -2px 0px #000, 1px -3px 0px #000, 0px -3px 0px #000, -1px -3px 0px #000, -2px -2px 0px #000, -3px -1px 0px #000;
  20. }
  21.  
  22. /*style text*/
  23. .live-chat-widget .comment-text {
  24. display: inline;
  25. font-family: 'Raleway', sans-serif;
  26. font-size: 24px;
  27. color:#e1e9ec;
  28. line-height: 32px;
  29. text-shadow:
  30. 1px 3px 0px #000, 2px 2px 0px #000, 3px 1px 0px #000, 3px 0px 0px #000, 3px -1px 0px #000, 2px -2px 0px #000, 1px -3px 0px #000,
  31. -1px 3px 0px #000, -2px 2px 0px #000, -3px 1px 0px #000, -3px 0px 0px #000, -3px -1px 0px #000, -2px -2px 0px #000, -1px -3px 0px #000,
  32. 3px 1px 0px #000, 2px 2px 0px #000, 1px 3px 0px #000, 0px 3px 0px #000, -1px 3px 0px #000, -2px 2px 0px #000, -3px 1px 0px #000,
  33. 3px -1px 0px #000, 2px -2px 0px #000, 1px -3px 0px #000, 0px -3px 0px #000, -1px -3px 0px #000, -2px -2px 0px #000, -3px -1px 0px #000;
  34.  
  35. }
  36.  
  37. .live-chat-widget .comment .author a:after {
  38. content: ":";
  39. }
  40.  
  41. /*Moderator name color*/
  42. .live-chat-widget .comment.author-is-moderator a{
  43. color:#28a5bc !important;
  44. }
  45.  
  46.  
  47. /*Streamer name color*/
  48. .live-chat-widget .comment.author-is-owner a{
  49. color:#0a809a !important;
  50. }
  51.  
  52. /*Moderator icon offset*/
  53. .live-chat-widget .comment.author-is-owner .yt-user-photo {
  54. margin-top:3px;
  55. }
  56.  
  57. /*Icon offset*/
  58. .yt-user-photo{
  59. margin-top:7px
  60. }
  61.  
  62. /*Chatroom isolation*/
  63. #live-comments-controls {
  64. display: none;
  65. }
  66.  
  67.  
  68.  
  69. /*Fix Padding*/
  70. #body-container,
  71. .live-chat-widget .comment .content,
  72. .live-chat-widget .comment,
  73. .yt-card.yt-card-has-padding {
  74. padding: 2px!important;
  75. }
  76.  
  77. /*Body background color*/
  78. body , .live-chat-page{
  79. background: transparent;
  80. /*background:red;*/
  81. }
  82.  
  83. /*Comment inline*/
  84. .live-chat-widget .comment.author-is-owner .byline{
  85. display:inline !important;
  86. }
  87.  
  88. /*Hide scrollbar*/
  89. body,
  90. .live-chat-widget #comments-scroller{
  91. overflow:hidden !important;
  92. border:none;
  93. }
  94.  
  95. /*Lock chatroom to top*/
  96. #content,
  97. #watch7-sidebar {
  98. bottom: 0;
  99. }
  100.  
  101. .live-chat-widget .comment.fan-funding-tip, .live-chat-widget .comment.new-member-announcement, .live-chat-widget.dark .comment.fan-funding-tip, .live-chat-widget.dark .comment.new-member-announcement {
  102. background-color: #0f9d58;
  103. }
  104.  
  105. .live-chat-widget .comment.alternate-row {
  106. background-color: rgba(28, 28, 28, 0);
  107. min-width:80px;
  108. }
  109.  
  110.  
  111. .live-chat-widget .comment {
  112. position: relative;
  113. padding: 12px 14px;
  114. background-color: rgba(28, 28, 28, 0);
  115. overflow: hidden;
  116. margin:6px;
  117. }
  118.  
  119. .live-chat-widget .gaming-promo {
  120. display:none;
  121. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement