neerajkalyank commited on
Commit
55a56e5
·
verified ·
1 Parent(s): 8d46f78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -3
app.py CHANGED
@@ -134,7 +134,7 @@ body {
134
  #header {
135
  color: #d6ec0c;
136
  text-align: center;
137
- font-weight: 700;
138
  text-transform: uppercase;
139
  margin-bottom: 25px;
140
  }
@@ -149,7 +149,7 @@ body {
149
  color: #e0e0e0;
150
  }
151
 
152
- #name_field, #father_name_field, #age_field, #phone_field, #pincode_field {
153
  max-width: 700px;
154
  border: 1px solid #888;
155
  border-radius: 6px;
@@ -166,6 +166,15 @@ body {
166
  box-shadow: 0 0 8px rgba(204, 219, 66, 0.5);
167
  }
168
 
 
 
 
 
 
 
 
 
 
169
  textarea {
170
  font-size: 15px;
171
  color: #080707;
@@ -187,7 +196,7 @@ textarea {
187
  }
188
 
189
  .gr-button:hover {
190
- background-color: #2a5bc1;
191
  transform: scale(1.05);
192
  }
193
 
 
134
  #header {
135
  color: #d6ec0c;
136
  text-align: center;
137
+ font-weight: 850;
138
  text-transform: uppercase;
139
  margin-bottom: 25px;
140
  }
 
149
  color: #e0e0e0;
150
  }
151
 
152
+ #name_field, #father_name_field, #age_field, #phone_field, #address_field, #pincode_field {
153
  max-width: 700px;
154
  border: 1px solid #888;
155
  border-radius: 6px;
 
166
  box-shadow: 0 0 8px rgba(204, 219, 66, 0.5);
167
  }
168
 
169
+ textarea {
170
+ font-size: 15px;
171
+ color: #333; /* Match the color of other input fields */
172
+ background: rgba(245, 245, 245, 0.7); /* Adjust to match the input field color */
173
+ padding: 12px;
174
+ border-radius: 6px;
175
+ border: 1px solid #888; /* Match the border style of input fields */
176
+ transition: all 0.3s ease;
177
+ }
178
  textarea {
179
  font-size: 15px;
180
  color: #080707;
 
196
  }
197
 
198
  .gr-button:hover {
199
+ background-color: #1141a4;
200
  transform: scale(1.05);
201
  }
202