Skip to content

Instantly share code, notes, and snippets.

@gioxx
Created November 28, 2017 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gioxx/e4dcc535389f72d604c64d0c9ccc7ba7 to your computer and use it in GitHub Desktop.
Save gioxx/e4dcc535389f72d604c64d0c9ccc7ba7 to your computer and use it in GitHub Desktop.
Una possibile modifica per Firefox Quantum che va a integrare uno sfondo personalizzato per la nuova scheda (about:newtab) e la home page (about:home), basato sul thread nella community di Reddit. Maggiori informazioni disponibili sul blog: https://wp.me/pdQ5q-8Rw
@-moz-document url(about:newtab) {
.activity-stream {
background-image: url(coffee.jpg) !important;
background-size:cover !important;
background-attachment: fixed !important;
}
@media (min-width: 1280px) {
.activity-stream main {
margin-left: 625px !important;
}
}
@media (min-width: 1920px) {
.activity-stream main {
width: 736px !important;
margin-left: 870px !important;
}
}
}
@-moz-document url(about:home) {
.activity-stream {
background-image: url(macbook.jpg) !important;
background-size:cover !important;
background-attachment: fixed !important;
}
@media (min-width: 1280px) {
.activity-stream main {
margin-left: 625px !important;
}
}
@media (min-width: 1920px) {
.activity-stream main {
width: 736px !important;
margin-left: 870px !important;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment