Matthew1J

Rumble dark skin

Feb 12th, 2021 (edited)
2,049
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.51 KB | None | 1 0
  1. :root {
  2.   --bg-dark: #252525;
  3.   --bg-darker: #151515;
  4.   --font-light: #aaa;
  5.   --font-dark: black;
  6.   --shadow-color: #101010;
  7.   --border: #353535;
  8.    
  9.   --transparent: rgba(37, 37, 37, 0);
  10.   --semi-transparent: rgba(0, 0, 0, 0.5);
  11. }
  12.  
  13. {
  14.     color : var(--font-light);
  15. }
  16.  
  17. body {
  18.     background : var(--bg-darker);
  19. }
  20.  
  21. /*credit to eromrab for the navbar update*/
  22. header {
  23.     background : var(--bg-darker) !important;
  24. }
  25.  
  26. span.header-user-name {
  27.     color : var(--font-light);
  28. }
  29.  
  30. div.chat-history--message {
  31.     color : var(--font-light);
  32. }
  33.  
  34. div.chat-history--username {
  35.     color : #BBB;
  36. }
  37.  
  38. .comments-action, .comment-text, .comments-meta, h4.mediaList-by-heading, h1.h1, .media-heading-info, .media-heading-name, .listing-header--content, h2 {
  39.   color : var(--font-light);
  40. }
  41.  
  42. .mediaList-list.container.content, .mediaList-list, .promo-widget-header, .container.content, .video-listing-entry, article.video-item, textarea.comments-create-textarea, div.promo-widget, div.tuner-box--section {
  43.     color : var(--font-light);
  44.     background : var(--bg-dark);
  45.     border-color : var(--border);
  46. }
  47.  
  48. .ellipsis-1 {
  49.   background : var(--transparent);
  50. }
  51.  
  52. li.mediaList-item {
  53.     border-bottom: 1px solid var(--border)
  54. }
  55.  
  56. div.listing-header--white-bg {
  57.   background: var(--bg-darker);
  58. }
  59. a.video-item--a, div.tuner-box--section {
  60.     box-shadow: 1px 3px 2px 2px var(--shadow-color);
  61. }
  62. a.video-item--a:hover {
  63.     background: var(--semi-transparent);
  64. }
  65. article.video-item:hover, .tuner-box-link:hover{
  66.   color: var(--font-dark);
  67. }
  68.  
Add Comment
Please, Sign In to add comment