Guest User

Untitled

a guest
Dec 28th, 2021
1,672
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.61 KB | None | 0 0
  1. #root{
  2. /* This is a fallback bg image in case Dark Mode / Light Mode won't get recognized properly */
  3.   --bg: transparent !important;
  4.   background-image: url(https://i.imgur.com/Li0knJQ.png);
  5.   background-repeat: no-repeat;
  6.   background-attachment: fixed;
  7.   background-size: cover;
  8.   /* Adjust Tab Vertical Size */
  9.   --tabs-height: 43px;
  10. }
  11.  
  12. /* LIGHT MODE SETTINGS */
  13.  
  14. @media (prefers-color-scheme:light) {
  15.   #root {
  16.   --bg: transparent !important;
  17.   background-image: url(https://i.imgur.com/4dhK81E.png);
  18.   background-repeat: no-repeat;
  19.   background-attachment: fixed;
  20.   background-size: cover;
  21.   --tabs-activated-bg: rgb(237, 243, 250) !important;
  22.   }
  23.   .NavigationBar {
  24.     background-color: rgb(249, 249, 251) !important;
  25.     }
  26.  
  27.   .NavigationBar .panel-btn[data-active="true"] {
  28.    border-radius: 15px !important;
  29. }
  30.  
  31.   .NavigationBar {
  32.     padding: 4.5px !important;
  33.     }
  34. }
  35.  
  36. /* DARK MODE SETTINGS */
  37.  
  38. @media (prefers-color-scheme:dark) {
  39.   #root {
  40.   --bg: transparent !important;
  41.   background-image: url(https://i.imgur.com/azf836Y.png);
  42.   background-repeat: no-repeat;
  43.   background-attachment: fixed;
  44.   background-size: cover;
  45.  
  46.   --tabs-fg: rgb(212, 212, 212) !important;
  47.   --tabs-bg-hover: rgb(131, 139, 158)!important;
  48.   --tabs-activated-bg: rgb(127, 139, 168) !important;
  49.   --nav-btn-activated-bg: rgb(31, 34, 47) !important;
  50.   }
  51.   .NavigationBar {
  52.       background-color: rgb(11, 13, 21) !important;
  53.       }
  54.  
  55.     #tabs .tabs-actiaved-bg {
  56.     background-color: rgb(66, 56, 113) !important;
  57.     }
  58.  
  59. /* Next Two rules adjust Navbar Panel Button Styling */
  60.   .NavigationBar .panel-btn[data-active="true"] {
  61.    border-radius: 15px !important;
  62.    background-color: rgb(31, 34, 47) !important;
  63. }
  64.   .Sidebar .panel-btn > svg,
  65. .Sidebar .panel-btn > img {
  66.  fill:rgb(104, 114, 157);
  67. }
  68.  
  69. .Sidebar .settings-btn > svg {
  70. fill: rgb(160, 168, 200) !important;
  71. }
  72. }
  73. /* GENERAL SETTINGS */
  74.  
  75. /* Align Sidebery NavBar Height with Firefox Toolbar Height */
  76.   .NavigationBar {
  77.     padding: 4.5px !important;
  78.     }
  79.  
  80. .Tab .title {
  81.     overflow: hidden;
  82.     }
  83.    
  84.     .Tab[data-active] {
  85.         background-color:var(--tabs-activated-bg);
  86.         border:var(--tabs-activated-border);
  87.         box-shadow:var(--tabs-activated-shadow)
  88.  
  89.     }
  90.      
  91.     #nav{
  92.         --nav-btn-bg: color: #112793ff !important;
  93.     }
  94.    
  95.     #tabs .tabs-actiaved-bg {
  96.         background-color: rgb(249, 249, 251) !important;
  97.  
  98.         }
  99.    
  100.    
  101. .Tab {
  102.     margin: 2px 5px 2px 10px;
  103.     width: 90%;
  104.     border-radius: 3px;
  105.     color: yellow;
  106. }
  107.  
  108. .Sidebar .panel-btn {
  109. opacity: 100% !important;
  110. }
  111.  
Advertisement
Add Comment
Please, Sign In to add comment