50 lines
1.1 KiB
SCSS
Vendored
50 lines
1.1 KiB
SCSS
Vendored
.claimBox {
|
|
border: 1px solid rgba(7,42,68,.1);
|
|
box-shadow: 0 2px 5px rgba(7,42,68,.1);
|
|
border-radius: 6px;
|
|
.claimTitle {
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
overflow: auto;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.claimTags {
|
|
font-size: 80%;
|
|
position: absolute;
|
|
z-index: 100;
|
|
color: white;
|
|
}
|
|
.claimTag {
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
.contentTag {
|
|
background-color: darkgoldenrod;
|
|
}
|
|
.nsfwTag {
|
|
background-color: red;
|
|
}
|
|
.bidStateTag {
|
|
background-color: darkblue;
|
|
}
|
|
.pendingTag {
|
|
background-color: darkgrey;
|
|
}
|
|
.claimImage {
|
|
height: 160px;
|
|
}
|
|
.claimThumbnail {
|
|
object-fit: cover;
|
|
}
|
|
.claimDefaultImage {
|
|
background-color: #2f9176;
|
|
}
|
|
.claimBoxFooter {
|
|
color: white;
|
|
border-bottom-left-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
background-color: dodgerblue;
|
|
}
|
|
}
|