NicollasMarques commited on
Commit
1f7a9bc
verified
1 Parent(s): 22d5a64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +67 -27
app.py CHANGED
@@ -166,33 +166,73 @@ with gr.Blocks(title="Sistema de Busca de Cons贸rcio Im贸vel") as demo:
166
  gr.HTML(
167
  """
168
  <style>
169
- body {
170
- background-color: #ff8f00 !important;
171
- color: black !important;
172
- }
173
-
174
- .gr-button {
175
- background-color: white !important;
176
- color: black !important;
177
- font-weight: bold;
178
- border: 2px solid black !important;
179
- transition: 0.2s;
180
- }
181
-
182
- .gr-button:hover {
183
- background-color: #1d449a !important;
184
- color: white !important;
185
- }
186
-
187
- label {
188
- color: black !important;
189
- }
190
-
191
- input, textarea {
192
- background-color: white !important;
193
- color: black !important;
194
- }
195
- </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  """
197
  )
198
 
 
166
  gr.HTML(
167
  """
168
  <style>
169
+ body {
170
+ background-color: #ff8f00 !important;
171
+ color: white !important;
172
+ font-family: 'Arial', sans-serif;
173
+ }
174
+
175
+ .gr-block.gr-textbox label,
176
+ .gr-block.gr-number label,
177
+ .gr-block.gr-checkboxgroup label {
178
+ font-weight: bold;
179
+ color: white !important;
180
+ text-align: center;
181
+ display: block;
182
+ }
183
+
184
+ input, select, textarea {
185
+ background-color: white !important;
186
+ color: black !important;
187
+ border-radius: 12px !important;
188
+ border: none !important;
189
+ padding: 10px 15px !important;
190
+ font-size: 16px !important;
191
+ width: 100% !important;
192
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
193
+ }
194
+
195
+ .gr-button {
196
+ background-color: white !important;
197
+ color: black !important;
198
+ border-radius: 25px !important;
199
+ font-size: 18px !important;
200
+ padding: 12px 24px !important;
201
+ font-weight: bold;
202
+ border: none !important;
203
+ width: 100%;
204
+ transition: all 0.3s ease-in-out;
205
+ }
206
+
207
+ .gr-button:hover {
208
+ background-color: #1d449a !important;
209
+ color: white !important;
210
+ }
211
+
212
+ .gr-markdown h2, .gr-markdown p {
213
+ text-align: center;
214
+ font-weight: bold;
215
+ color: white;
216
+ }
217
+
218
+ .gr-row {
219
+ justify-content: center;
220
+ gap: 20px;
221
+ flex-wrap: wrap;
222
+ }
223
+
224
+ .gr-column {
225
+ width: 100%;
226
+ max-width: 300px;
227
+ }
228
+
229
+ .gr-block.gr-checkboxgroup {
230
+ max-width: 300px;
231
+ margin: 0 auto;
232
+ }
233
+ </style>
234
+ """
235
+ )
236
  """
237
  )
238