mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 05:07:36 -05:00
35 lines
542 B
CSS
35 lines
542 B
CSS
.listing {
|
|
max-width: 355px;
|
|
}
|
|
|
|
.thumbnail {
|
|
aspect-ratio: 16 / 9;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
min-width: 355px;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.castText {
|
|
font-size: var(--fonts-sm);
|
|
font-weight: var(--semi-bold);
|
|
color: var(--color-text-high);
|
|
}
|
|
|
|
.weaponsNotShown {
|
|
background-color: var(--color-bg-high);
|
|
border-radius: 100%;
|
|
display: grid;
|
|
place-items: center;
|
|
font-weight: var(--semi-bold);
|
|
width: 38px;
|
|
height: 38px;
|
|
font-size: var(--fonts-sm);
|
|
}
|