Spaces:
Sleeping
Sleeping
/* 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 ; | |
} | |
/* Submit button styling */ | |
#detect_btn { | |
background: linear-gradient(90deg, #ff7e5f, #feb47b) ; | |
color: white ; | |
font-weight: bold; | |
border: none ; | |
border-radius: 6px ; | |
padding: 10px 16px ; | |
font-size: 16px ; | |
} | |