the-glorious-startpage/css/base/dummy-body-background.css
Gerome Matilla 6d6de0f883
Improve JS Logic (#28)
* 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()
2020-06-17 19:03:27 +08:00

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;
}