the-glorious-startpage/css/set-body-background.css
Gerome Matilla 9415244927 init
2020-06-04 07:31:49 +08:00

23 lines
328 B
CSS

/*Filter for body's lazy loaded background */
#backgroundBody {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
color: var(--foreground);
}
.blurBody {
filter: blur(5px);
-webkit-filter: blur(5px);
transition: all 1s;
}
.noBlurBody {
transition: all 1s;
}