Spaces:
Sleeping
Sleeping
File size: 779 Bytes
751c3a2 |
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 |
/* Header styling */
#header {
color: #ff6600;
font-weight: bold;
}
/* Input panel background */
#input_panel {
background-color: #e6f7ff;
padding: 12px;
border-radius: 8px;
border: 1px solid #b3e0ff;
}
/* Output image container */
#output_image {
background-color: #fffbe6;
border-radius: 8px;
padding: 5px;
}
/* Make image fit without cropping */
#output_image img {
object-fit: contain !important;
}
/* Submit button styling */
#detect_btn {
background: linear-gradient(90deg, #ff7e5f, #feb47b) !important;
color: white !important;
font-weight: bold;
border: none !important;
border-radius: 6px !important;
padding: 10px 16px !important;
font-size: 16px !important;
}
|