findyMater / style.css
liljujutsu's picture
Upload 3 files
751c3a2 verified
raw
history blame contribute delete
779 Bytes
/* 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;
}