-
-
Save retx6/939f8ce50781a6848b6fc71e0c904ed9 to your computer and use it in GitHub Desktop.
Changes new tab background for Firefox.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-moz-document url("about:newtab"), url("about:home"), url(about:privatebrowsing) { | |
| /* Sets background image and autoscale image to browser window. */ | |
| body{ | |
| background-image: url("") !important; | |
| background-size: cover !important; | |
| background-repeat: no-repeat !important; | |
| background-attachment: fixed !important; | |
| background-position-x: center !important; | |
| background-position-y: bottom !important; | |
| } | |
| /* Changes pinned shortcuts background and text colors | |
| .top-site-outer .tile { | |
| background-color: #2f3542 !important; | |
| } | |
| */ | |
| /* When hovering over a pinned shortcut | |
| .top-site-outer:hover { | |
| background-color: #57606f !important; | |
| } | |
| */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment