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

61 lines
1.1 KiB
CSS
Raw Normal View History

2024-03-29 20:43:58 +01:00
.thumbnailBig {
2024-03-30 16:18:16 +01:00
background-color: var(--post-thumbnail-background-color);
2024-03-29 20:43:58 +01:00
width: var(--width);
height: var(--height);
2024-03-30 16:18:16 +01:00
margin: 3px 20px 5px 0;
2024-04-01 14:24:10 +02:00
float: left;
2024-03-30 16:18:16 +01:00
display: flex;
justify-content: center;
align-items: center;
2024-03-29 13:54:11 +01:00
}
2024-03-29 20:43:58 +01:00
.thumbnailSmall {
2024-03-30 16:18:16 +01:00
background-color: var(--post-thumbnail-background-color);
2024-03-29 20:43:58 +01:00
width: var(--width);
height: var(--height);
2024-03-30 16:18:16 +01:00
margin: 3px 10px 5px 5px;
2024-04-01 14:24:10 +02:00
float: left;
2024-03-30 16:18:16 +01:00
display: flex;
justify-content: center;
align-items: center;
2024-03-29 13:54:11 +01:00
}
2024-03-30 16:18:16 +01:00
.thumbnailBig img, .thumbnailBig video {
max-width: 250px;
max-height: 250px;
2024-03-29 20:43:58 +01:00
}
2024-03-30 16:18:16 +01:00
.thumbnailSmall img, .thumbnailSmall video {
max-width: 125px;
max-height: 125px;
2024-03-29 13:54:11 +01:00
}
2024-04-01 14:24:10 +02:00
.hide {
display: none !important;
}
.thumbnail .show {
display: block;
}
.content img {
cursor: pointer;
max-width: 100%;
max-height: 100%;
}
.content iframe {
border: none;
}
@media (min-width: 640px) {
.media img, .media iframe, .media video, .media audio {
margin: 3px 20px 5px 0;
}
}
@media (max-width: 640px) {
.media img, .media iframe, .media video, .media audio {
margin: 3px 10px 5px 5px;
}
}