difool2nice

firefox about:home

May 8th, 2018
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.14 KB | None | 0 0
  1. /* ------------about:home - home page -----------------------*/
  2.  
  3. @-moz-document url-prefix(about:home) {
  4.     body {
  5.     background-color: #1f1f1f !important;
  6.     }
  7.  
  8.     #brandLogo {
  9.     transform: scale(1.15%) !important;
  10.     width: 0px !important;
  11.     padding-left: 256px !important;
  12.     padding-bottom: 65px !important;
  13.     background: url('Logo.png') !important;
  14.     }
  15. }
  16.  
  17. #searchText {
  18. font-weight: lighter;
  19. width: 100%;
  20. height: 30px;
  21. padding: 3px 6px;
  22. border: 1px solid rgb(0, 0, 0) !important;
  23. box-shadow: none !important;
  24. font-size: 1.2em;
  25. color: rgb(166, 166, 166) !important;
  26. background: rgb(68, 68, 68) !important;
  27. border-top-left-radius: 0px !important;
  28. border-bottom-left-radius: 0px !important;
  29. }
  30.  
  31. #searchSubmit {
  32. background: linear-gradient(rgb(40, 40, 40), rgb(30, 30, 30)) !important;
  33. padding: 4px 7px 6px 7px !important;
  34. height: 32px !important;
  35. border: 1px solid rgba(0, 0, 0, 1) !important;
  36. box-shadow: none !important;
  37. font-size: 0.8em !important;
  38. color: rgb(166, 166, 166) !important;
  39. text-shadow: 0px -1px 0px rgb(0, 0, 0);
  40. cursor: pointer;
  41. font-family: Fira Sans !important;
  42. border-top-right-radius: 0px !important;
  43. border-bottom-right-radius: 0px !important;
  44. }
  45.  
  46. #searchSubmit:hover {
  47. background: linear-gradient(rgb(60, 60, 60), rgb(50, 50, 50)) !important;
  48. color: dodgerblue !important;
  49. text-shadow: 0 0 3px rgba(0, 173, 238, .5) !important;
  50. transition: .1s ease-in;
  51. }
  52.  
  53. #searchSubmit:active,
  54. #searchSubmit:focus {
  55. color: dodgerblue !important;
  56. text-shadow: 0px 0px 3px rgba(0, 173, 238, .5) !important;
  57. box-shadow: 0 0 6.5px rgba(0, 0, 0, .4) inset, 0 0 5px rgba(0, 0, 0, .4) inset !important;
  58. transition: .1s ease-in;
  59. }
  60.  
  61. #searchIcon[focus] {
  62. border: 1px solid transparent !important;
  63. }
  64.  
  65. body[dir=rtl] #searchSubmit:active {
  66. box-shadow: -1px 1px 0px rgb(0, 0, 0) !important;
  67. }
  68.  
  69. #snippets {
  70. font-family: Fira Sans !important;
  71. color: rgb(166, 166, 166) !important;
  72. }
  73.  
  74. #snippet-4148 .show-video {
  75. color: dodgerblue !important;
  76. /*rgb(0, 173, 238) !important;*/
  77. }
  78.  
  79. #contentContainer {
  80. background-image: none !important;
  81. }
  82.  
  83. #launcher {
  84. border-top: 1px solid rgb(0, 0, 0) !important;
  85. box-shadow: none !important;
  86. background-color: rgba(0, 0, 0, .25) !important;
  87. background-image: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, 0) 10%) !important;
  88. }
  89.  
  90. .launchButton {
  91. border-radius: 8px !important;
  92. color: rgb(120, 120, 120) !important;
  93. }
  94.  
  95. .launchButton:hover {
  96. background-color: rgba(0, 0, 0, .2) !important;
  97. border-radius: 8px !important;/*
  98. box-shadow: 0px 0px 15px rgba(0, 173, 238, .5) !important;*/
  99. color: rgba(0, 173, 238, .75) !important;
  100. text-shadow: 0px 0px 5px rgba(0, 173, 238, .5) !important;
  101. transition: .2s ease-in;
  102. }
  103.  
  104. .launchButton:focus {
  105. background-color: rgba(0, 0, 0, .2) !important;
  106. border-radius: 8px !important;
  107. box-shadow: 0px 0px 15px rgba(255, 255, 255, .75) !important;
  108. transition: .2s ease-in;
  109. }
  110.  
  111. .launchButton:active {
  112. background-color: rgba(0, 0, 0, .35) !important;
  113. border-radius: 8px !important;
  114. box-shadow: 0px 3px 7px rgba(0, 0, 0, .75)inset !important;
  115. transition: .2s ease-in;
  116. }
  117.  
  118. .launchButton:active:hover {
  119. border: 1px solid transparent !important;
  120. transition: .2s ease-in;
  121. }
Add Comment
Please, Sign In to add comment