Spaces:
Sleeping
Sleeping
File size: 708 Bytes
9aee46b 4971aea a757b4d 4971aea a757b4d 4971aea 9aee46b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
.App {
text-align: center;
}
.preview-image {
width: 100%;
height: auto;
max-height: 100%;
object-fit: contain;
display: block;
margin-top: 0;
}
.result-image {
max-width: 100%;
border: 1px solid #ddd;
border-radius: 4px;
padding: 4px;
}
.detection-list {
margin-top: 16px;
text-align: left;
}
.model-card {
cursor: pointer;
transition: all 0.3s;
}
.model-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.model-card.selected {
border: 2px solid #3f51b5;
background-color: #e8eaf6;
}
.model-card.disabled {
opacity: 0.6;
cursor: not-allowed;
}
.performance-info {
margin-top: 16px;
font-size: 0.9rem;
color: #666;
}
|