Files
5chan/src/components/media/media.module.css
T

32 lines
479 B
CSS
Raw Normal View History

2024-03-29 13:54:11 +01:00
.thumbnail {
float: left;
padding: 3px 20px 5px 0;
width: var(--width, 250px);
height: var(--height, 250px);
}
.thumbnailHidden {
display: none;
}
.thumbnailVisible {
display: block;
}
.thumbnailWrapper {
background-color: var(--background-thumbnail);
height: 250px;
width: 250px;
display: inline-block;
}
.transparentThumbnailWrapper {
background-color: transparent;
opacity: 1;
}
.thumbnail img, .thumbnail video {
width: 100%;
height: 100%;
}