neerajkalyank commited on
Commit
eb7a558
·
verified ·
1 Parent(s): 7e940ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -152,18 +152,18 @@ body {
152
 
153
  /* Tab Styling with Rounded Rectangle */
154
  .gradio-container .gr-tab {
155
- color: #f0f0f0;
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: 12px; /* Rounded corners for tabs */
162
  }
163
 
164
  .gradio-container .gr-tab:hover {
165
  color: #ffffff;
166
- background-color: #ff9800; /* Background color for hover effect */
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: 5px; /* Adds space between tabs */
177
  }
178
 
179
  /* Input Field Styling */
@@ -197,8 +197,8 @@ body {
197
 
198
  /* Button Styling */
199
  .gr-button {
200
- background-color: #ff9800;
201
- color: #ffffff;
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: #e68a00;
215
  transform: translateY(-2px);
216
  }
217
 
218
  .gr-button:active {
219
- background-color: #d97600;
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