neerajkalyank commited on
Commit
321ccf7
·
verified ·
1 Parent(s): 3b09a9c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -134,7 +134,7 @@ body {
134
 
135
  /* Header */
136
  #header {
137
- color: #1de9b6;
138
  text-align: center;
139
  font-weight: 700;
140
  font-size: 2.5em;
@@ -145,7 +145,7 @@ body {
145
  }
146
 
147
  #header:hover {
148
- color: #ff8c00;
149
  transform: scale(1.05);
150
  }
151
 
@@ -163,7 +163,7 @@ body {
163
  /* Form Field Styles */
164
  input, textarea, select {
165
  max-width: 700px;
166
- border: 1px solid #1de9b6;
167
  border-radius: 8px;
168
  padding: 10px 12px;
169
  background: rgba(245, 245, 245, 0.95);
@@ -176,8 +176,8 @@ input, textarea, select {
176
 
177
  /* Form Field Hover and Focus */
178
  input:focus, textarea:focus, select:focus {
179
- border-color: #ffd54f;
180
- box-shadow: 0 0 10px rgba(255, 213, 79, 0.6);
181
  transform: scale(1.02);
182
  }
183
 
@@ -235,7 +235,7 @@ input:focus, textarea:focus, select:focus {
235
 
236
  .nav-tabs .nav-item {
237
  font-size: 1.1em;
238
- color: #ffffff !important;
239
  padding: 10px 18px;
240
  cursor: pointer;
241
  font-weight: 500;
@@ -245,11 +245,11 @@ input:focus, textarea:focus, select:focus {
245
  }
246
 
247
  .nav-tabs .nav-item:hover {
248
- color: #FFCA28;
249
  }
250
 
251
  .nav-tabs .nav-item.active {
252
- color: #00FF00 !important;
253
  border: 2px solid #00FF00;
254
  font-weight: 700;
255
  background-color: rgba(0, 255, 0, 0.1);
@@ -260,7 +260,7 @@ input:focus, textarea:focus, select:focus {
260
  label {
261
  font-size: 1em;
262
  font-weight: 600;
263
- color: #ffeb3b;
264
  margin-bottom: 5px;
265
  }
266
 
 
134
 
135
  /* Header */
136
  #header {
137
+ color: #7fffd4; /* Light Aqua for better contrast */
138
  text-align: center;
139
  font-weight: 700;
140
  font-size: 2.5em;
 
145
  }
146
 
147
  #header:hover {
148
+ color: #32cd32; /* Lime Green on hover */
149
  transform: scale(1.05);
150
  }
151
 
 
163
  /* Form Field Styles */
164
  input, textarea, select {
165
  max-width: 700px;
166
+ border: 1px solid #7fffd4;
167
  border-radius: 8px;
168
  padding: 10px 12px;
169
  background: rgba(245, 245, 245, 0.95);
 
176
 
177
  /* Form Field Hover and Focus */
178
  input:focus, textarea:focus, select:focus {
179
+ border-color: #00ffcc; /* Light Cyan border on focus */
180
+ box-shadow: 0 0 10px rgba(0, 255, 204, 0.6);
181
  transform: scale(1.02);
182
  }
183
 
 
235
 
236
  .nav-tabs .nav-item {
237
  font-size: 1.1em;
238
+ color: #7fffd4 !important; /* Light Aqua for inactive tabs */
239
  padding: 10px 18px;
240
  cursor: pointer;
241
  font-weight: 500;
 
245
  }
246
 
247
  .nav-tabs .nav-item:hover {
248
+ color: #00ffcc; /* Bright cyan on hover */
249
  }
250
 
251
  .nav-tabs .nav-item.active {
252
+ color: #00FF00 !important; /* Bright Green for active tab */
253
  border: 2px solid #00FF00;
254
  font-weight: 700;
255
  background-color: rgba(0, 255, 0, 0.1);
 
260
  label {
261
  font-size: 1em;
262
  font-weight: 600;
263
+ color: #7fffd4; /* Light Aqua for label text */
264
  margin-bottom: 5px;
265
  }
266