Spaces:
Runtime error
Runtime error
File size: 499 Bytes
00a3f05 |
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 |
/* 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;
}
|