Advertisement
difool2nice

about:home dark page

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