proxitok/styles/feed.css

27 lines
302 B
CSS
Raw Normal View History

2022-01-01 19:14:57 +00:00
#video {
2022-01-05 23:55:24 +00:00
height: 100%;
overflow: hidden;
2022-01-01 19:14:57 +00:00
}
2022-01-05 23:55:24 +00:00
figure {
position: relative;
display: inline-block;
}
2022-01-05 23:55:24 +00:00
.img-background {
width: 100%;
height: 100%;
2022-01-01 19:14:57 +00:00
}
2022-01-05 23:55:24 +00:00
figure .img-background {
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 99;
}
figure:hover .img-background {
display: inline;
}