difool2nice

userContent.css

Apr 2nd, 2018
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 8.01 KB | None | 0 0
  1. /* home page -------------------------------------------------------------------------------------*/
  2.  
  3. @-moz-document url-prefix(about:home) {
  4.     body {
  5.         background-color: #1f1f1f !important;
  6.         /*#0C0C0D;*/
  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. }
  122.  
  123.  
  124. /*----------ublock origin --------------*/
  125.  
  126. @-moz-document url-prefix("moz-extension://a90ca5db-d794-41bf-95d6-6f33d812f597/") {
  127.     body {
  128.         background-color: #222 !important;
  129.         color: #ccc !important;
  130.  
  131.     }
  132.     a {
  133.         color: #777 !important;
  134.     }
  135.     h2 {
  136.         background-color: #444 !important;
  137.         color: #eee !important;
  138.     }
  139.     code {
  140.         background-color: #555 !important;
  141.     }
  142.     #switch .fa {
  143.         color: dodgerblue !important;
  144.     }
  145.     body.off #switch .fa {
  146.         color: #555 !important;
  147.     }
  148.     .tool {
  149.         color: white !important;
  150.     }
  151.     .tool.enabled:hover {
  152.         color: dodgerblue !important;
  153.     }
  154.     .permatoolbar {
  155.         background-color: #333 !important;
  156.     }
  157.     .permatoolbar .button {
  158.         background-color: #444 !important;
  159.     }
  160.     .permatoolbar .button:hover {
  161.         background-color: #777 !important;
  162.     }
  163.     #tooltip {
  164.         background-color: #ccc !important;
  165.         border: 1px solid #111 !important;
  166.         color: #111 !important;
  167.     }
  168.     #firewallContainer>div {
  169.         background-color: #333 !important;
  170.     }
  171.     #firewallContainer>div:hover {
  172.         background-color: #444 !important;
  173.     }
  174.     #firewallContainer>div>span {
  175.         color: #eee !important;
  176.         border-bottom: 1px solid #111 !important;
  177.     }
  178.     #firewallContainer>div>span:first-of-type~span {
  179.         border-left: 1px solid #111 !important;
  180.     }
  181.     #extraTools {
  182.         background-color: #444 !important;
  183.     }
  184.     #extraTools>span:hover {
  185.         color: dodgerblue !important;
  186.     }
  187.     #dashboard-nav-widgets {
  188.         background-color: #111 !important;
  189.         border-bottom: 1px solid #777 !important;
  190.     }
  191.     .tabButton {
  192.         background-color: #444 !important;
  193.         border: 1px solid #666 !important;
  194.         border-bottom: 1px solid #777 !important;
  195.         color: white !important;
  196.     }
  197.     .tabButton.selected {
  198.         background-color: #222 !important;
  199.         border-bottom: 1px solid #222 !important;
  200.     }
  201.     #diff li {
  202.         background-color: #555 !important;
  203.     }
  204.     #diff li:nth-child(even) {
  205.         background-color: #666 !important;
  206.     }
  207.     #diff textarea {
  208.         background-color: #333 !important;
  209.         color: #ccc !important;
  210.     }
  211. }
  212.  
  213.  
  214. /* Remove New Tab Flash */
  215. /*
  216. @-moz-document url(about:blank),
  217. url(about:newtab) {
  218.     #newtab-window,
  219.     html {
  220.         background: #0c0c0d;
  221.     }
  222. }*/
  223. /*
  224.  * example: make search fields on www.mozilla.org black-on-white
  225.  */
  226. @-moz-document url-prefix(http://www.mozilla.org/) {
  227. #q { background: white ! important; color: black ! important; }
  228. }
  229.  
  230.  
  231. /* amo
  232. @namespace url(http://www.w3.org/1999/xhtml);
  233.  
  234. @-moz-document domain("addons.mozilla.org")
  235. {
  236.  
  237.   a.AddonMoreInfo-version-history-link
  238.   {
  239.     float: left;
  240.     font-size: 2em;
  241.   }
  242.  
  243.   .AddonMeta
  244.   {
  245.     position: absolute;
  246.     top: 2%;
  247.     right: 10%;
  248.     z-index: 999;
  249.   }
  250.  
  251.   .AddonMoreInfo-dl
  252.   {
  253.     position: absolute;
  254.     top: 23%;
  255.     right: 10%;
  256.     z-index: 999;
  257.   }*/
  258. /* .ExpandableCard-contents { float: right;  position: absolute; top: 2%; right: 10%; z-index: 999; } */ /* broken */
  259. /*
  260.   .SearchFilters-AddonType-label, #SearchFilters-AddonType, .SearchFilters-OperatingSystem-label, #SearchFilters-OperatingSystem
  261.   {
  262.     display: none;
  263.   }
  264.  
  265.   .Header-user-and-external-links, .Header-authenticate-button, .SearchForm, div.Header-content
  266.   {
  267.     display: none;
  268.   }
  269.  
  270.   .AddonMoreInfo-privacy-policy-title, .AddonMoreInfo-privacy-policy-link, .DropdownMenu
  271.   {
  272.     display: none;
  273.   }
  274.  
  275.   .AddonMoreInfo-stats-link, .AddonMoreInfo-stats-title, .__fx-devtools-hide-shortcut__
  276.   {
  277.     display: none;
  278.   }
  279.  
  280.   .AddonMoreInfo-license-title, .AddonMoreInfo-license-link, .AddonMoreInfo-links-title
  281.   {
  282.     display: none;
  283.   }
  284.  
  285.   section.Card:nth-child(3) > h2:nth-child(1), .ReportAbuseButton--preview, .Footer
  286.   {
  287.     display: none;
  288.   }
  289.  
  290.   .Addon-overall-rating > h2:nth-child(1), .Addon-overall-rating > div:nth-child(2)
  291.   {
  292.     display: none;
  293.   }
  294.  
  295.   #SearchFilters-Featured, label.SearchFilters-label:nth-child(7)
  296.   {
  297.     display: none;
  298.   }
  299.  
  300.   section.Card:nth-child(2) > h2:nth-child(1)
  301.   {
  302.     display: none;
  303.   } */ /* defunc filterResultsToggle *//*
  304.   .CardList > h2:nth-child(1)
  305.   {
  306.     display: none;
  307.   } *//* searchListTitle "searchResults" */
  308. /*
  309.   .Card--photon .Card-contents
  310.   {
  311.     padding: 0;
  312.   }
  313.  
  314.   .AddAddonToCollection
  315.   {
  316.     display: none;
  317.   }
  318.  
  319.   .PermissionsCard
  320.   {
  321.     display: none;
  322.   }
  323. }
  324. */
Advertisement
Add Comment
Please, Sign In to add comment