2020-06-04 01:31:49 +02:00
|
|
|
/*Filter for body's lazy loaded background */
|
|
|
|
|
2020-06-04 01:36:54 +02:00
|
|
|
#bodyBackground {
|
2020-06-04 01:31:49 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
2020-06-04 02:53:55 +02:00
|
|
|
transition: all 3s;
|
2020-06-04 01:31:49 +02:00
|
|
|
color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
2020-06-04 02:53:55 +02:00
|
|
|
.blurFiltered {
|
2020-06-04 01:31:49 +02:00
|
|
|
filter: blur(5px);
|
|
|
|
-webkit-filter: blur(5px);
|
|
|
|
}
|