Advertisement
Guest User

Untitled

a guest
Sep 26th, 2019
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.98 KB | None | 0 0
  1. body {
  2.   font-family: Arial, sans-serif !important;
  3. }
  4.  
  5. /*
  6.  * LIGHT THEME
  7.  */
  8.  
  9. .side-nav-card__link {
  10.   border-bottom: 1px solid #d5d5d5;
  11. }
  12.  
  13. .side-nav__scrollable_content {
  14.     background-color: rgb(26, 26, 26);    
  15. }
  16.  
  17. svg.tw-icon__svg  {
  18.   -webkit-filter: invert(100%); /* safari 6.0 - 9.0 */
  19.           filter: invert(100%);
  20. }
  21.  
  22. svg.tw-svg__asset--friendssc {
  23.   -webkit-filter: invert(100%); /* safari 6.0 - 9.0 */
  24.           filter: invert(100%);
  25. }
  26.  
  27. .search-item__history {
  28.     color: white;
  29.    
  30. }
  31.  
  32. .tw-c-text-base {
  33.     color: #000 !important;
  34. }
  35.  
  36. .navigation-link.active, .navigation-link:hover {
  37.     color: #e0a1ff;
  38. }
  39.  
  40. .navigation-link {
  41.     color: white;
  42. }
  43.  
  44. svg.tw-svg__asset--followhollow {
  45.   -webkit-filter: invert(100%); /* safari 6.0 - 9.0 */
  46.           filter: invert(100%);
  47. }
  48.  
  49. .channel-leaderboard-header {
  50.     background-color: rgb(255, 255, 255) !important;
  51. }
  52.  
  53. body {
  54.     background: rgb(232, 232, 232);}
  55.  
  56. .tw-core-button--secondary {
  57.     background: rgb(255, 255, 255);}
  58.  
  59. .tw-input {
  60.     background: rgb(255, 255, 255);}
  61.  
  62. .root {
  63. --color-background-base: hsl(261, 42%, 42%);
  64.  
  65. }
  66.  
  67. .tw-tag {
  68.     background-color: rgb(255, 255, 255);
  69. }
  70. /*
  71.  * DARK THEME (overrides light theme)
  72.  
  73.  
  74. .tw-root--theme-dark {
  75.   --color-background-input-focus: #222;
  76.   --color-border-input-focus: #777;
  77. }
  78.  
  79. .tw-root--theme-dark body,
  80. .tw-root--theme-dark .channel-header,
  81. .tw-root--theme-dark .channel-root__right-column {
  82.   background: #242424;
  83. }
  84.  
  85. .tw-root--theme-dark .chat-room {
  86.   background: #242424;
  87. }
  88.  
  89. .tw-root--theme-dark .side-nav-card__link {
  90.   border-bottom: 1px solid #444;
  91. } */
  92.  
  93. /*
  94.  * GLOBAL
  95.  */
  96.  
  97. h1 {
  98.   font-size: 3.5rem;
  99. }
  100.  
  101. .navigation-link * {
  102.   font-size: 14px !important;
  103. }
  104.  
  105. .side-nav-card__title p {
  106.   font-size: inherit !important;
  107.   line-height: 1.4 !important;
  108. }
  109.  
  110. .channel-leaderboard-header__users .tw-strong {
  111.   font-weight: normal !important;
  112. }
  113.  
  114. .channel-leaderboard-header__users p {
  115.   font-size: 12px;
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement