forked from extern/the-glorious-startpage
19 lines
294 B
CSS
19 lines
294 B
CSS
/*Filter for body's lazy loaded background */
|
|
|
|
#bodyBackground {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
transition: all 3s;
|
|
color: var(--foreground);
|
|
}
|
|
|
|
.blurFiltered {
|
|
filter: blur(5px);
|
|
-webkit-filter: blur(5px);
|
|
} |