Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Custom CSS for better styling */
|
2 |
+
.gradio-container {
|
3 |
+
max-width: 1200px !important;
|
4 |
+
margin: auto;
|
5 |
+
}
|
6 |
+
|
7 |
+
.tab-selected {
|
8 |
+
background-color: #f0f2f6 !important;
|
9 |
+
border-radius: 8px 8px 0 0 !important;
|
10 |
+
}
|
11 |
+
|
12 |
+
.input-column, .output-column {
|
13 |
+
background-color: white;
|
14 |
+
padding: 20px;
|
15 |
+
border-radius: 10px;
|
16 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
17 |
+
}
|
18 |
+
|
19 |
+
.gr-button {
|
20 |
+
background-color: #2c3e50 !important;
|
21 |
+
color: white !important;
|
22 |
+
}
|
23 |
+
|
24 |
+
.gr-button:hover {
|
25 |
+
background-color: #34495e !important;
|
26 |
+
}
|
27 |
+
|
28 |
+
.gr-form {
|
29 |
+
border: none !important;
|
30 |
+
background: transparent !important;
|
31 |
+
}
|