Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -162,6 +162,40 @@ def get_administradoras_options():
|
|
| 162 |
|
| 163 |
# Criando a interface Gradio
|
| 164 |
with gr.Blocks(title="Sistema de Busca de Cons贸rcio Im贸vel") as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 165 |
gr.Markdown("# 馃彔 Busca de Combina莽玫es de Cons贸rcio Im贸vel")
|
| 166 |
gr.Markdown("Insira os valores desejados para cr茅dito, entrada e parcela, e filtre por administradora.")
|
| 167 |
|
|
|
|
| 162 |
|
| 163 |
# Criando a interface Gradio
|
| 164 |
with gr.Blocks(title="Sistema de Busca de Cons贸rcio Im贸vel") as demo:
|
| 165 |
+
gr.HTML("""
|
| 166 |
+
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
| 167 |
+
<style>
|
| 168 |
+
* {
|
| 169 |
+
font-family: 'Poppins', sans-serif !important;
|
| 170 |
+
}
|
| 171 |
+
body {
|
| 172 |
+
background-color: #ff8f00 !important;
|
| 173 |
+
color: #000;
|
| 174 |
+
}
|
| 175 |
+
.gr-input, .gr-textbox, .gr-checkbox, .gr-number, .gr-group {
|
| 176 |
+
background-color: white !important;
|
| 177 |
+
border-radius: 12px !important;
|
| 178 |
+
padding: 8px !important;
|
| 179 |
+
}
|
| 180 |
+
.gr-button {
|
| 181 |
+
font-weight: bold;
|
| 182 |
+
border-radius: 8px !important;
|
| 183 |
+
}
|
| 184 |
+
textarea {
|
| 185 |
+
border-radius: 12px !important;
|
| 186 |
+
background-color: white !important;
|
| 187 |
+
color: black !important;
|
| 188 |
+
}
|
| 189 |
+
input {
|
| 190 |
+
border-radius: 12px !important;
|
| 191 |
+
background-color: white !important;
|
| 192 |
+
color: black !important;
|
| 193 |
+
}
|
| 194 |
+
label {
|
| 195 |
+
font-weight: 600;
|
| 196 |
+
}
|
| 197 |
+
</style>
|
| 198 |
+
""")
|
| 199 |
gr.Markdown("# 馃彔 Busca de Combina莽玫es de Cons贸rcio Im贸vel")
|
| 200 |
gr.Markdown("Insira os valores desejados para cr茅dito, entrada e parcela, e filtre por administradora.")
|
| 201 |
|