Advertisement
sanitysama

newtab-2

Oct 26th, 2014
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.51 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2. @-moz-document url("about:newtab") {
  3. #newtab-scrollbox {
  4.     background-image: url("file://C:/Users/Acer/Pictures/Wallpaper/110233.jpg"),
  5.         linear-gradient(rgba(25,25,25,0.5), rgba(0,0,0,0.2)) !important;
  6.     background-size: cover;
  7.     background-position: -20%
  8.     }
  9. /* margins */
  10. #newtab-margin-top {
  11.     max-height: 45px !important
  12. }
  13. #newtab-grid {
  14.     height: auto !important;
  15.     max-height: none !important
  16. }
  17. /* cell */
  18. .newtab-cell {
  19.     height: 120px !important;
  20.     width: 180px !important;
  21.     margin: 6px !important
  22. }
  23.  
  24. .newtab-title {
  25.     background: rgba(0,0,0,0.3);
  26.     bottom: 0 !important;
  27.     border-radius: 6px 6px 0px 0px;
  28.     color: white;
  29.     float: left !important;
  30.     position: relative !important;
  31.     padding: 0 5px !important;
  32.     margin: 0 !important;
  33.     width: 170px !important;
  34.     text-align: left !important;
  35.     transition: background 0.2s ease
  36.     }
  37.     .newtab-cell:hover .newtab-title {
  38.         background: rgba(0,0,0,0.9);
  39.         color: white !important
  40.     }
  41.     .newtab-site[pinned] .newtab-title:before {
  42.         background-image: none !important;
  43.         content: inherit !important
  44.     }
  45. .newtab-cell:not([ignorehover]) > .newtab-site:hover, .newtab-site[dragged] {
  46.     box-shadow: 0px 0px 6px 2px black !important;
  47.     border: 0 !important;
  48.     margin: 0 !important
  49. }
  50. /* removed */
  51. #newtab-margin-bottom,
  52. #newtab-search-form,
  53. #newtab-margin-undo-container {
  54.     display: none !important
  55.     }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement