mobile-config-firefox/content/newtab_background_image.css
2022-11-06 14:41:10 +02:00

13 lines
No EOL
502 B
CSS

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/content/newtab_background_image.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
@-moz-document url(about:newtab), url(about:home){
body{
background-image: url("image.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position-x: center;
background-position-y: bottom;
}
}