Spaces:
Sleeping
Sleeping
neerajkalyank
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -152,18 +152,18 @@ body {
|
|
152 |
|
153 |
/* Tab Styling with Rounded Rectangle */
|
154 |
.gradio-container .gr-tab {
|
155 |
-
color: #
|
156 |
padding: 10px 20px;
|
157 |
font-weight: bold;
|
158 |
cursor: pointer;
|
159 |
position: relative;
|
160 |
transition: color 0.3s ease, background-color 0.3s ease;
|
161 |
-
border-radius:
|
162 |
}
|
163 |
|
164 |
.gradio-container .gr-tab:hover {
|
165 |
color: #ffffff;
|
166 |
-
background-color: #
|
167 |
}
|
168 |
|
169 |
.gradio-container .gr-tab-active {
|
@@ -173,7 +173,7 @@ body {
|
|
173 |
}
|
174 |
|
175 |
.gradio-container .gr-tab + .gr-tab {
|
176 |
-
margin-left:
|
177 |
}
|
178 |
|
179 |
/* Input Field Styling */
|
@@ -197,8 +197,8 @@ body {
|
|
197 |
|
198 |
/* Button Styling */
|
199 |
.gr-button {
|
200 |
-
background-color: #
|
201 |
-
color: #
|
202 |
border: none;
|
203 |
border-radius: 8px;
|
204 |
padding: 12px 25px;
|
@@ -211,12 +211,12 @@ body {
|
|
211 |
}
|
212 |
|
213 |
.gr-button:hover {
|
214 |
-
background-color: #
|
215 |
transform: translateY(-2px);
|
216 |
}
|
217 |
|
218 |
.gr-button:active {
|
219 |
-
background-color: #
|
220 |
transform: translateY(0px);
|
221 |
}
|
222 |
|
|
|
152 |
|
153 |
/* Tab Styling with Rounded Rectangle */
|
154 |
.gradio-container .gr-tab {
|
155 |
+
color: #00ff40;
|
156 |
padding: 10px 20px;
|
157 |
font-weight: bold;
|
158 |
cursor: pointer;
|
159 |
position: relative;
|
160 |
transition: color 0.3s ease, background-color 0.3s ease;
|
161 |
+
border-radius: 20px; /* Rounded corners for tabs */
|
162 |
}
|
163 |
|
164 |
.gradio-container .gr-tab:hover {
|
165 |
color: #ffffff;
|
166 |
+
background-color: #0000ff; /* Background color for hover effect */
|
167 |
}
|
168 |
|
169 |
.gradio-container .gr-tab-active {
|
|
|
173 |
}
|
174 |
|
175 |
.gradio-container .gr-tab + .gr-tab {
|
176 |
+
margin-left: 10px; /* Adds space between tabs */
|
177 |
}
|
178 |
|
179 |
/* Input Field Styling */
|
|
|
197 |
|
198 |
/* Button Styling */
|
199 |
.gr-button {
|
200 |
+
background-color: #0000ff;
|
201 |
+
color: #00ff00;
|
202 |
border: none;
|
203 |
border-radius: 8px;
|
204 |
padding: 12px 25px;
|
|
|
211 |
}
|
212 |
|
213 |
.gr-button:hover {
|
214 |
+
background-color: #00ff00;
|
215 |
transform: translateY(-2px);
|
216 |
}
|
217 |
|
218 |
.gr-button:active {
|
219 |
+
background-color: #00ff00;
|
220 |
transform: translateY(0px);
|
221 |
}
|
222 |
|