netlify-cms-react-starter/src/components/BackgroundImage.css
2018-01-23 12:21:56 +10:00

18 lines
274 B
CSS

.BackgroundImage {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-position: center;
transition: opacity 0.5s ease;
overflow: hidden;
}
.BackgroundImage-lazy {
filter: blur(5px);
}
.BackgroundImage-lazy-loaded {
filter: blur(0);
}