Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -90,6 +90,17 @@ with col3:
|
|
90 |
# Streamlit components
|
91 |
# Ajouter un peu de CSS pour centrer le texte
|
92 |
# Ajouter un peu de CSS pour centrer le texte et le colorer en orange foncé
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
st.markdown("""
|
94 |
<style>
|
95 |
.centered-orange-text {
|
@@ -100,7 +111,6 @@ st.markdown("""
|
|
100 |
""", unsafe_allow_html=True)
|
101 |
|
102 |
# Centrer le texte principal
|
103 |
-
st.markdown('<h3 class="centered-text">🤖 ALTER-IA BOT</h3>', unsafe_allow_html=True)
|
104 |
# Centrer et colorer en orange foncé le texte spécifique
|
105 |
st.markdown('<p class="centered-orange-text">Votre Réponse à Chaque Défi Méthodologique 📈</p>', unsafe_allow_html=True)
|
106 |
# Input and button for user interaction
|
|
|
90 |
# Streamlit components
|
91 |
# Ajouter un peu de CSS pour centrer le texte
|
92 |
# Ajouter un peu de CSS pour centrer le texte et le colorer en orange foncé
|
93 |
+
st.markdown("""
|
94 |
+
<style>
|
95 |
+
.centered-text {
|
96 |
+
text-align: center;
|
97 |
+
color: darkorange;
|
98 |
+
}
|
99 |
+
</style>
|
100 |
+
""", unsafe_allow_html=True)
|
101 |
+
|
102 |
+
# Utiliser la classe CSS pour centrer et colorer le texte
|
103 |
+
st.markdown('<h3 class="centered-text">🤖 ALTER-IA BOT</h3>', unsafe_allow_html=True)
|
104 |
st.markdown("""
|
105 |
<style>
|
106 |
.centered-orange-text {
|
|
|
111 |
""", unsafe_allow_html=True)
|
112 |
|
113 |
# Centrer le texte principal
|
|
|
114 |
# Centrer et colorer en orange foncé le texte spécifique
|
115 |
st.markdown('<p class="centered-orange-text">Votre Réponse à Chaque Défi Méthodologique 📈</p>', unsafe_allow_html=True)
|
116 |
# Input and button for user interaction
|