44 lines
729 B
CSS
44 lines
729 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F3F4F6;
|
|
}
|
|
|
|
.brand-text {
|
|
color: #2563EB;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 0.25em 0.6em;
|
|
font-size: .75em;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: baseline;
|
|
border-radius: .375rem;
|
|
}
|
|
|
|
.status-badge.winning {
|
|
color: #065F46;
|
|
background-color: #D1FAE5;
|
|
}
|
|
|
|
.status-badge.overpriced {
|
|
color: #991B1B;
|
|
background-color: #FEE2E2;
|
|
}
|
|
|
|
.status-badge.fair {
|
|
color: #92400E;
|
|
background-color: #FEF3C7;
|
|
}
|
|
|
|
.product-img-thumbnail {
|
|
width: 40px;
|
|
height: 40px;
|
|
object-fit: cover;
|
|
border-radius: .375rem;
|
|
}
|