1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/backdrop/style.css

31 lines
500 B
CSS
Raw Normal View History

2016-05-29 17:02:47 -04:00
.backdropContainer {
contain: layout style;
}
2016-03-12 02:28:13 -05: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 12:09:47 -04:00
contain: layout style;
}
2016-10-14 12:22:04 -04:00
2016-11-28 14:27:21 -05:00
.backdropImageFadeIn {
animation: backdrop-fadein 800ms ease-in normal both;
}
2016-10-14 12:22:04 -04:00
@keyframes backdrop-fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
2016-11-28 14:27:21 -05:00
}