Spaces:
Runtime error
Runtime error
/* Change the background color of the entire interface */ | |
body { | |
background-color: #f0f0f0; | |
} | |
/* Style the input and output components */ | |
.gradio-input, .gradio-output { | |
background-color: #ffffff; | |
border: 1px solid #cccccc; | |
border-radius: 5px; | |
} | |
/* Style the submit button */ | |
.gradio-submit-button { | |
background-color: #4CAF50; | |
color: white; | |
border-radius: 5px; | |
border: none; | |
padding: 10px 20px; | |
} | |
.gradio-submit-button:hover { | |
background-color: #45a049; | |
} | |