Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -106,6 +106,33 @@ ul.options li {
|
|
| 106 |
color: #2d2d2d !important;
|
| 107 |
}
|
| 108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
"""
|
| 110 |
|
| 111 |
# 2. FUNÇÃO PARA SALVAR O TXT
|
|
|
|
| 106 |
color: #2d2d2d !important;
|
| 107 |
}
|
| 108 |
|
| 109 |
+
/* 1. Aumenta o texto que o usuário digita (Input) */
|
| 110 |
+
textarea,
|
| 111 |
+
.input-container textarea {
|
| 112 |
+
font-size: 22px !important;
|
| 113 |
+
line-height: 1.6 !important;
|
| 114 |
+
font-family: 'Alegreya Sans', sans-serif !important;
|
| 115 |
+
color: #2d2d2d !important;
|
| 116 |
+
}
|
| 117 |
+
|
| 118 |
+
/* 2. Aumenta o texto da análise gerada (Output) */
|
| 119 |
+
/* O Gradio usa 'disabled' ou 'interactive-false' para a caixa de saída */
|
| 120 |
+
textarea:disabled,
|
| 121 |
+
[data-testid="textbox"]:disabled {
|
| 122 |
+
font-size: 22px !important;
|
| 123 |
+
line-height: 1.6 !important;
|
| 124 |
+
font-family: 'Alegreya Sans', sans-serif !important;
|
| 125 |
+
color: #1a1a1a !important; /* Um pouco mais escuro para facilitar a leitura */
|
| 126 |
+
-webkit-text-fill-color: #1a1a1a !important; /* Necessário para alguns navegadores */
|
| 127 |
+
opacity: 1 !important; /* Remove o aspecto acinzentado de 'desabilitado' */
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
+
/* 3. Garante que o placeholder (ex: "Insira o texto...") também seja legível */
|
| 131 |
+
::placeholder {
|
| 132 |
+
font-size: 20px !important;
|
| 133 |
+
opacity: 0.7;
|
| 134 |
+
}
|
| 135 |
+
|
| 136 |
"""
|
| 137 |
|
| 138 |
# 2. FUNÇÃO PARA SALVAR O TXT
|