mirror of
https://github.com/manilarome/the-glorious-startpage.git
synced 2025-02-18 18:30:52 +01:00
* theme engine fix ugly logic part 1 * remove new lines when gettings css value property * theme-engine: add process cssvalues * theme-engine: add getting inputfields value * theme-engine: validation * theme-engine: animspeed validation * theme-engine: animspeed validation 2 * fix #rgbaa validator * theme-engine:almost finish * theme-engine: fix codacy errors * theme-engine: fix missing semicolon * theme-engine: fix missing semicolon * weather-settings: use confirm() method * weather-settings: cleanup, remove some confirm()
23 lines
326 B
CSS
23 lines
326 B
CSS
/* Filter for body's lazy loaded background */
|
|
|
|
#dummyBodyBackground {
|
|
background: var(--base-body-bg);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
transition: all 3s;
|
|
}
|
|
|
|
.dummyBackgroundBlur {
|
|
filter: blur(5px);
|
|
}
|
|
|
|
.dummyBackgroundHide {
|
|
opacity: 0;
|
|
}
|