mirror of
https://github.com/manilarome/the-glorious-startpage.git
synced 2024-11-28 02:23:12 +01:00
23 lines
354 B
CSS
23 lines
354 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;
|
|
color: var(--foreground);
|
|
}
|
|
|
|
.blurredBodyBackground {
|
|
filter: blur(5px);
|
|
-webkit-filter: blur(5px);
|
|
transition: all 1s;
|
|
}
|
|
|
|
.unblurredBodyBackground {
|
|
transition: all 1s;
|
|
} |