Guest User

css code

a guest
Nov 16th, 2025
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. :root {
  2. --glass-bg-dark: rgba(20, 24, 32, 0.78);
  3. --glass-bg-tab-active: rgba(20, 24, 32, 0.92);
  4. --glass-bg-tab-inactive: rgba(20, 24, 32, 0.65);
  5. --glass-border: rgba(255, 255, 255, 0.40);
  6. --glass-blur-strong: 60px;
  7. --glass-blur-tab: 24px;
  8. }
  9.  
  10. #navigator-toolbox {
  11. background-color: transparent !important;
  12. border: none !important;
  13. }
  14.  
  15. #navigator-toolbox::after {
  16. border: none !important;
  17. }
  18.  
  19. #TabsToolbar,
  20. #nav-bar,
  21. #PersonalToolbar {
  22. background-color: rgba(20, 24, 32, 0.50) !important;
  23. backdrop-filter: blur(var(--glass-blur-strong)) saturate(140%) contrast(103%) !important;
  24. -moz-backdrop-filter: blur(var(--glass-blur-strong)) saturate(140%) contrast(103%) !important;
  25. border: none !important;
  26. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset !important;
  27. }
  28.  
  29. #toolbar-menubar {
  30. background-color: rgba(20, 24, 32, 0.42) !important;
  31. backdrop-filter: blur(var(--glass-blur-strong)) saturate(140%) contrast(103%) !important;
  32. -moz-backdrop-filter: blur(var(--glass-blur-strong)) saturate(140%) contrast(103%) !important;
  33. border: none !important;
  34. }
  35.  
  36. .tabbrowser-tab::before,
  37. .tabbrowser-tab::after {
  38. border: none !important;
  39. }
  40.  
  41. .tab-background {
  42. margin-block: 3px !important;
  43. margin-inline: 2px !important;
  44. border-radius: 9px !important;
  45. border: 1px solid transparent !important;
  46. }
  47.  
  48. .tabbrowser-tab[selected] .tab-background {
  49. background-color: var(--glass-bg-tab-active) !important;
  50. backdrop-filter: blur(var(--glass-blur-tab)) saturate(150%) !important;
  51. -moz-backdrop-filter: blur(var(--glass-blur-tab)) saturate(150%) !important;
  52. border-color: var(--glass-border) !important;
  53. }
  54.  
  55. .tabbrowser-tab:not([selected]) .tab-background {
  56. background-color: var(--glass-bg-tab-inactive) !important;
  57. }
  58.  
  59. #TabsToolbar * {
  60. color: #f9f9fb !important;
  61. fill: #f9f9fb !important;
  62. }
  63.  
  64. .tabbrowser-tab[attention] .tab-label {
  65. text-decoration: underline !important;
  66. }
  67.  
  68. #urlbar {
  69. background-color: transparent !important;
  70. backdrop-filter: none !important;
  71. -moz-backdrop-filter: none !important;
  72. box-shadow: none !important;
  73. }
  74.  
  75. #urlbar-background,
  76. #searchbar {
  77. background-color: var(--glass-bg-tab-active) !important;
  78. backdrop-filter: blur(var(--glass-blur-strong)) saturate(140%) contrast(103%) !important;
  79. -moz-backdrop-filter: blur(var(--glass-blur-strong)) saturate(140%) contrast(103%) !important;
  80. border-radius: 10px !important;
  81. border: 1px solid var(--glass-border) !important;
  82. box-shadow:
  83. 0 0 0 1px rgba(0, 0, 0, 0.30),
  84. 0 4px 14px rgba(0, 0, 0, 0.40) !important;
  85. }
  86.  
  87. #urlbar[focused="true"] > #urlbar-background {
  88. background-color: rgba(20, 24, 32, 0.98) !important;
  89. }
  90.  
  91. #urlbar-input,
  92. #urlbar * {
  93. color: #f9f9fb !important;
  94. fill: #f9f9fb !important;
  95. }
  96.  
  97. .toolbarbutton-1,
  98. #nav-bar toolbarbutton {
  99. border-radius: 8px !important;
  100. }
  101.  
  102. .toolbarbutton-1:hover,
  103. #nav-bar toolbarbutton:hover {
  104. background-color: rgba(255, 255, 255, 0.08) !important;
  105. }
  106.  
  107. .toolbarbutton-1[open="true"],
  108. .toolbarbutton-1:active {
  109. background-color: rgba(255, 255, 255, 0.14) !important;
  110. }
  111.  
  112. #nav-bar * {
  113. color: #f9f9fb !important;
  114. fill: #f9f9fb !important;
  115. }
  116.  
  117. .browser-container {
  118. border-top: none !important;
  119. }
  120.  
Advertisement
Add Comment
Please, Sign In to add comment