mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 05:07:36 -05:00
45 lines
693 B
CSS
45 lines
693 B
CSS
.thumbnail {
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
|
|
&:hover {
|
|
scale: 1.025;
|
|
}
|
|
}
|
|
|
|
.dialogTag {
|
|
background-color: #fff;
|
|
border-radius: var(--rounded);
|
|
color: #000;
|
|
font-size: var(--fonts-xxs);
|
|
padding-inline: var(--s-1);
|
|
margin-block: var(--s-1) var(--s-0-5);
|
|
}
|
|
|
|
.dialogTagUser {
|
|
background-color: var(--color-accent);
|
|
}
|
|
|
|
.dialogDescription {
|
|
font-size: var(--fonts-sm);
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
|
|
.dialogImg {
|
|
max-width: 100%;
|
|
max-height: 75vh;
|
|
width: 100%;
|
|
height: auto;
|
|
object-fit: contain;
|
|
display: block;
|
|
}
|
|
|
|
.tagsContainer {
|
|
display: flex;
|
|
gap: var(--s-0-5) var(--s-2);
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-block-start: var(--s-0-5);
|
|
}
|