Advertisement
lequangvuxxx

Youtube Chat CSS for OBS

Dec 5th, 2016
1,570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.47 KB | None | 0 0
  1. /*Chatroom background color*/
  2. body, .live-chat-widget .comment:nth-of-type(n),.live-chat-page,#live-comments-section,
  3. #live-comments-section #comments-scroller-container
  4. {
  5.   background: transparent !important;
  6. }
  7.  
  8. /*Name color*/
  9. .live-chat-widget .comment .author a{
  10.   color: lightblue;
  11.   display: inline;
  12. }
  13.  
  14. /*Comment color*/
  15. #comments-view .comment-text a,
  16. .live-chat-widget .comment-text,
  17. .author {
  18.   color: white;
  19.   display: inline;
  20. }
  21.  
  22. .live-chat-widget .comment .author a:after {
  23.     margin-left:3px;
  24.     content: " :";
  25. }
  26.  
  27. .yt-uix-menu-container, .yt-uix-menu + .byline{
  28.   margin-right:0;
  29. }
  30.  
  31. /*Owner comments*/
  32. .live-chat-widget .comment.author-is-owner a,
  33. .live-chat-widget .comment.author-is-owner .byline{
  34.   color: lightcoral;
  35.   display: inline;
  36. }
  37.  
  38. /*Moderator comments*/
  39. .live-chat-widget .comment.author-is-moderator a,
  40. .live-chat-widget .comment.author-is-moderator .byline{
  41.   color: Lime;
  42.   display:inline;
  43. }
  44.  
  45. /*Removed message color*/
  46. em{
  47.   font-size: 15px !important;
  48.   color: LightGoldenRodYellow;
  49. }
  50.  
  51. /*Moderator icon offset*/
  52. .live-chat-widget .comment.author-is-owner .yt-user-photo,
  53. .live-chat-widget .comment.author-is-moderator .yt-user-photo
  54.  {
  55.     margin-top:5px;
  56.     margin-left:4px;
  57. }
  58.  
  59. /*Icon offset*/
  60. .yt-user-photo {
  61.   margin-top:9px
  62. }
  63.  
  64.  
  65. /*Bad language decoration*/
  66. .comment .badwords-matched {
  67.   text-shadow: none;
  68.   color: transparent;
  69. }
  70.  
  71. /*Text style*/
  72. .live-chat-widget .comment-text, .author, em
  73. {
  74.   font-size: 20px;
  75.   line-height: 40px !important;
  76.   font-family: Arial;
  77.   word-break: break-word;
  78.   text-shadow:
  79. 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,
  80. -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,
  81. 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,
  82. 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;
  83. }
  84.  
  85. /*Chatroom isolation*/
  86. #live-comments-controls, .accent-bar, .metadata .author, .gaming-promo
  87. {
  88.   display: none  !important;
  89. }
  90.  
  91. /*Lock chatroom to top*/
  92. #content, #watch7-sidebar {
  93.   top: 0;
  94. }
  95.  
  96. /*Fix Padding*/
  97. .content, .comment {
  98.   padding: 0!important;
  99. }
  100.  
  101. /*Hide scrollbar*/
  102. .live-chat-widget #comments-scroller{
  103.   overflow:hidden;
  104.   border:none;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement