Update app.py
Browse files
app.py
CHANGED
@@ -29,8 +29,8 @@ with gr.Blocks() as interface:
|
|
29 |
</div>
|
30 |
""")
|
31 |
|
32 |
-
#
|
33 |
-
with gr.Column(
|
34 |
text_input = gr.Textbox(label="Entrez le texte à traduire", placeholder="Entrez le texte à traduire ici...", lines=3)
|
35 |
source_lang = gr.Dropdown(choices=["fr", "li"], label="Langue Source")
|
36 |
target_lang = gr.Dropdown(choices=["li", "fr"], label="Langue Cible")
|
@@ -69,7 +69,7 @@ interface.css = """
|
|
69 |
.gradio-row {
|
70 |
margin-top: 10px;
|
71 |
}
|
72 |
-
/* Centrer la colonne */
|
73 |
.gr-column {
|
74 |
width: 50%;
|
75 |
margin: auto;
|
@@ -79,6 +79,17 @@ interface.css = """
|
|
79 |
background-color: #f9f9f9;
|
80 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
81 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
"""
|
83 |
|
84 |
# Lancer l'interface
|
|
|
29 |
</div>
|
30 |
""")
|
31 |
|
32 |
+
# Créer une colonne sans l'argument `align` qui n'existe pas
|
33 |
+
with gr.Column():
|
34 |
text_input = gr.Textbox(label="Entrez le texte à traduire", placeholder="Entrez le texte à traduire ici...", lines=3)
|
35 |
source_lang = gr.Dropdown(choices=["fr", "li"], label="Langue Source")
|
36 |
target_lang = gr.Dropdown(choices=["li", "fr"], label="Langue Cible")
|
|
|
69 |
.gradio-row {
|
70 |
margin-top: 10px;
|
71 |
}
|
72 |
+
/* Centrer la colonne et ajouter un style à la zone de texte */
|
73 |
.gr-column {
|
74 |
width: 50%;
|
75 |
margin: auto;
|
|
|
79 |
background-color: #f9f9f9;
|
80 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
81 |
}
|
82 |
+
/* Appliquer un style pour le texte d'entrée */
|
83 |
+
.gr-textbox {
|
84 |
+
font-size: 16px;
|
85 |
+
padding: 10px;
|
86 |
+
}
|
87 |
+
/* Appliquer un style pour la sortie de traduction */
|
88 |
+
.gr-textbox[placeholder='Le texte traduit s\'affichera ici...'] {
|
89 |
+
font-size: 16px;
|
90 |
+
font-weight: bold;
|
91 |
+
color: #2E8B57; /* Couleur verte pour l'output */
|
92 |
+
}
|
93 |
"""
|
94 |
|
95 |
# Lancer l'interface
|