jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/backdrop/style.css

31 lines
500 B
CSS
Raw Normal View History

2016-05-29 14:02:47 -07:00
.backdropContainer {
contain: layout style;
}
2016-03-12 00:28:13 -07:00
.backdropImage {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
2016-05-30 09:09:47 -07:00
contain: layout style;
}
2016-10-14 09:22:04 -07:00
2016-11-28 12:27:21 -07:00
.backdropImageFadeIn {
animation: backdrop-fadein 800ms ease-in normal both;
}
2016-10-14 09:22:04 -07:00
@keyframes backdrop-fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
2016-11-28 12:27:21 -07:00
}