Create custom.css
Browse files- custom.css +19 -0
custom.css
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* custom.css */
|
| 2 |
+
body {
|
| 3 |
+
font-family: 'Arial', sans-serif;
|
| 4 |
+
background-color: #f5f5f5;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
.gradio_content {
|
| 8 |
+
border-radius: 10px;
|
| 9 |
+
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
.gradio_button {
|
| 13 |
+
background: linear-gradient(to right, #6A82FB, #FC5C7D);
|
| 14 |
+
transition: transform 0.2s;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
.gradio_button:hover {
|
| 18 |
+
transform: scale(1.05);
|
| 19 |
+
}
|