Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* style.css */
|
| 2 |
+
|
| 3 |
+
/* Importa uma fonte mais profissional do Google Fonts */
|
| 4 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
|
| 5 |
+
|
| 6 |
+
/* Aplica a nova fonte a todo o aplicativo */
|
| 7 |
+
.gradio-container {
|
| 8 |
+
font-family: 'Inter', sans-serif !important;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
/* Deixa os cabeçalhos das etapas (Accordions) mais proeminentes */
|
| 12 |
+
.gradio-accordion > .label-wrap {
|
| 13 |
+
border-bottom: 1px solid #374151; /* Cinza escuro para a borda */
|
| 14 |
+
padding-bottom: 10px !important;
|
| 15 |
+
margin-bottom: 10px !important;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
/* Adiciona um efeito de sombra sutil nos botões para dar profundidade */
|
| 19 |
+
.gradio-button {
|
| 20 |
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
|
| 21 |
+
transition: all 0.2s ease-in-out !important;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
/* Efeito de "levantar" o botão ao passar o mouse */
|
| 25 |
+
.gradio-button:hover {
|
| 26 |
+
transform: translateY(-2px) !important;
|
| 27 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
|
| 28 |
+
}
|