2024-04-12 14:28:06 +02:00
|
|
|
.row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
2024-04-12 17:47:30 +02:00
|
|
|
justify-content: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding-bottom: 20px;
|
2024-04-12 14:28:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post {
|
|
|
|
|
width: 180px;
|
2024-04-12 17:47:30 +02:00
|
|
|
position: relative;
|
|
|
|
|
max-height: 320px;
|
|
|
|
|
padding: 10px 0 3px 0;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
display: inline-block;
|
2024-04-12 14:28:06 +02:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-12 17:47:30 +02:00
|
|
|
.mediaPaddingWrapper {
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2024-04-12 20:48:46 +02:00
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.threadIcons {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 2px;
|
|
|
|
|
right: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.threadIcons span {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
border: none;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
image-rendering: pixelated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.threadIcons .stickyIcon {
|
|
|
|
|
background-image: url("/public/assets/icons/sticky.gif");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.threadIcons .closedIcon {
|
|
|
|
|
background-image: url("/public/assets/icons/closed.gif");
|
2024-04-12 14:28:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mediaWrapper {
|
2024-04-12 17:47:30 +02:00
|
|
|
background-color: var(--media-thumbnail-background-color);
|
|
|
|
|
width: var(--width);
|
|
|
|
|
height: var(--height);
|
|
|
|
|
max-width: 150px;
|
|
|
|
|
max-height: 150px;
|
2024-04-12 14:28:06 +02:00
|
|
|
}
|
|
|
|
|
|
2024-04-12 17:47:30 +02:00
|
|
|
.post img, .post video, .post audio {
|
|
|
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
min-width: 50px;
|
|
|
|
|
min-height: 50px;
|
|
|
|
|
object-fit: contain;
|
2024-04-12 14:28:06 +02:00
|
|
|
}
|
2024-04-12 17:47:30 +02:00
|
|
|
|
|
|
|
|
.meta {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
line-height: 8px;
|
|
|
|
|
padding: 2px 0 1px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.teaser {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post a {
|
|
|
|
|
color: unset;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|