Advertisement
Guest User

rgb.css

a guest
Jul 27th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.51 KB | None | 0 0
  1. /*Toolbars color  */
  2.  #TabsToolbar, #tabbrowser-tabs, #nav-bar, #toolbar-menubar, #browser-panel {
  3.      background-color:transparent !important;
  4. }
  5.  #nav-bar {
  6.      background-color: rgba(111,100,90,0.10)!important;
  7. }
  8.  #urlbar {
  9.     /*Address Bar*/
  10.      background-color: rgba(58,107,148,0.0)!important;
  11. }
  12.  
  13. /*Animation for identity-icon  */
  14.  
  15. @keyframes filter-animation2 {
  16.   0% {
  17.     filter:  opacity(0.6) ;
  18.   }
  19.  
  20.   50% {
  21.     filter:  opacity(1);
  22.   }
  23.  
  24.   100% {
  25.     filter:  opacity(0.6) ;
  26.    }
  27.  
  28. }
  29. #identity-icon {
  30.     animation: filter-animation2 3.5s infinite;
  31. }
  32.  
  33. /*RED borders in toolbar*/
  34. #main-window[sizemode="normal"] #navigator-toolbox:after{
  35.   top: 10%;
  36.   left: 0%!important;
  37.   right: 0;
  38.   bottom: 0;
  39.  background: linear-gradient(120deg, rgb(0,3,1),rgb(130,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),  rgb(120,33,11),rgb(70,33,11),rgb(52,0,0) , rgb(0,0,0));
  40.  clip:rect(29px,2600px,31px,0px)!important;
  41. }
  42. #navigator-toolbox:after {
  43.   content: "";
  44.   top: 10%;
  45.   left: 1.27%;
  46.   right: 0;
  47.   bottom: 0;
  48.  background: linear-gradient(120deg, rgb(0,3,1),rgb(200,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),rgb(255,3,1),  rgb(120,33,11),rgb(70,33,11),rgb(52,0,0) , rgb(0,0,0));
  49.   clip:rect(29px,2600px,31px,0px);
  50.   display: -moz-box;
  51.   pointer-events: none;
  52.   will-change: filter;
  53.  
  54. }
  55. #navigator-toolbox {
  56.     border-bottom: 0px solid var(--chrome-content-separator-color)!important;
  57. }
  58. #navigator-toolbox:after {
  59.     position: absolute!important;
  60.  
  61.   nimation: filter-animation2 3.5s infinite;
  62. }
  63.  
  64. /*RED borders in selected tab*/
  65. #tabbrowser-tabs > .tabbrowser-tab > .tab-stack > .tab-background[selected="true"]:-moz-lwtheme
  66.  {
  67.     background:rgba(23,23,23,1)!important;
  68.   background-color:rgba(23,23,23,1)!important;
  69.    background-image:none!important;
  70.  
  71.  
  72. }
  73. #tabbrowser-tabs > .tabbrowser-tab[selected="true"]:-moz-lwtheme
  74.  {
  75.   position:relative!important;
  76.   border-width:2px!important;
  77.    border-bottom-color:rgb(20, 20, 20)!important;
  78.    border-style:solid!important;
  79.   border-left-color:rgb(220,0,0)!important;
  80.   border-right-color:rgb(220,0,0)!important;
  81.   border-top-color:rgb(220,0,0)!important;
  82.  
  83. }
  84. /*Bookmarks toolbar backround color*/
  85.  
  86. #PersonalToolbar
  87. {
  88.   background-color:rgb(20,20,20)!important;
  89. }
  90.  
  91. /*Bookmarks text color*/
  92. .bookmark-item {
  93.     color:rgba(255,175,130,0.7)!important;
  94.  
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement