Spaces:
Runtime error
Runtime error
Commit
·
00a3f05
1
Parent(s):
229c0c3
Create custom_theme.css
Browse files- custom_theme.css +24 -0
custom_theme.css
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Change the background color of the entire interface */
|
2 |
+
body {
|
3 |
+
background-color: #f0f0f0;
|
4 |
+
}
|
5 |
+
|
6 |
+
/* Style the input and output components */
|
7 |
+
.gradio-input, .gradio-output {
|
8 |
+
background-color: #ffffff;
|
9 |
+
border: 1px solid #cccccc;
|
10 |
+
border-radius: 5px;
|
11 |
+
}
|
12 |
+
|
13 |
+
/* Style the submit button */
|
14 |
+
.gradio-submit-button {
|
15 |
+
background-color: #4CAF50;
|
16 |
+
color: white;
|
17 |
+
border-radius: 5px;
|
18 |
+
border: none;
|
19 |
+
padding: 10px 20px;
|
20 |
+
}
|
21 |
+
|
22 |
+
.gradio-submit-button:hover {
|
23 |
+
background-color: #45a049;
|
24 |
+
}
|