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

115 lines
2.1 KiB
CSS
Raw Normal View History

2024-03-29 20:43:58 +01:00
.thumbnailBig {
2024-04-03 16:24:57 +02:00
background-color: var(--media-thumbnail-background-color);
2024-03-29 20:43:58 +01:00
width: var(--width);
height: var(--height);
max-width: 250px;
max-height: 250px;
2024-03-30 16:18:16 +01:00
margin: 3px 20px 5px 0;
display: inline-flex;
2024-03-30 16:18:16 +01:00
justify-content: center;
align-items: center;
overflow: hidden;
}
.subplebbitAvatar {
max-width: 250px;
max-height: 250px;
margin: 3px 20px 5px 0;
display: inline-block;
2024-03-29 13:54:11 +01:00
}
2024-05-28 18:25:53 +02:00
@media (max-width: 640px) {
.subplebbitAvatar {
max-width: 125px;
max-height: 125px;
margin: 3px 10px 5px 5px;
display: inline-block;
}
}
2024-03-29 20:43:58 +01:00
.thumbnailSmall {
2024-04-03 16:24:57 +02:00
background-color: var(--media-thumbnail-background-color);
2024-03-29 20:43:58 +01:00
width: var(--width);
height: var(--height);
max-width: 125px;
max-height: 125px;
2024-03-30 16:18:16 +01:00
margin: 3px 10px 5px 5px;
display: inline-flex;
2024-03-30 16:18:16 +01:00
justify-content: center;
align-items: center;
overflow: hidden;
2024-03-29 13:54:11 +01:00
}
.thumbnailSmall span, .thumbnailSmall a {
width: 100%;
display: inline-block;
word-wrap: break-word;
text-align: center;
cursor: pointer;
}
.thumbnail {
float: left;
}
2024-04-01 14:24:10 +02:00
.hide {
display: none !important;
}
.thumbnail .show {
display: block;
}
2024-04-02 12:54:56 +02:00
.content img, .content video, .content iframe, .content audio {
2024-04-01 14:24:10 +02:00
max-width: 100%;
max-height: 100%;
}
2024-04-02 12:54:56 +02:00
.content img {
cursor: pointer;
}
2024-04-01 14:24:10 +02:00
.content iframe {
border: none;
}
.fileInfo {
padding-bottom: 5px;
text-align: center;
color: var(--post-mobile-file-info-text-color);
font-size: 9pt;
}
.fileInfo a {
color: var(--post-link-text-color);
text-decoration: var(--post-link-text-decoration);
}
.fileInfo a:hover {
color: var(--post-link-text-color-hover);
}
.closeButton {
text-align: center;
padding: 5px 0 10px 0;
}
.thumbnailReplyDesktop {
margin: 3px 20px 5px 20px;
2024-04-01 14:24:10 +02:00
}
.thumbnailMobile {
margin: 8px 10px 5px 5px;
}
.mediaMobile img, .mediaMobile video, .mediaMobile iframe, .mediaMobile audio {
padding: 3px 0 5px 0;
2024-04-01 21:33:48 +02:00
}
.mediaDesktopReply img, .mediaDesktopReply video, .mediaDesktopReply iframe, .mediaDesktopReply audio {
padding: 3px 20px 5px 20px;
}
.mediaDesktopOp img, .mediaDesktopOp video, .mediaDesktopOp iframe, .mediaDesktopOp audio {
padding: 3px 20px 5px 0;
2024-04-01 14:24:10 +02:00
}