mirror of
https://github.com/zoriya/v10.git
synced 2026-08-11 00:19:28 +00:00
23 lines
327 B
CSS
23 lines
327 B
CSS
.media-background-skin {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
|
|
& > video,
|
|
& > .media {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: inherit;
|
|
}
|
|
|
|
& > :where(img, picture) {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: inherit;
|
|
}
|
|
}
|
|
|