2022-11-06 12:41:10 +00:00
|
|
|
/* 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. */
|
|
|
|
|
2022-11-06 12:43:35 +00:00
|
|
|
@-moz-document url("about:newtab"), url("about:home"){
|
2022-11-06 12:41:10 +00:00
|
|
|
body{
|
2022-11-06 12:43:35 +00:00
|
|
|
/* This will load image.jpg stored in the same folder as this file */
|
|
|
|
background-image: url("image.jpg");
|
2022-11-06 12:41:10 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-position-x: center;
|
|
|
|
background-position-y: bottom;
|
|
|
|
}
|
|
|
|
}
|