OutrageousOtter commited on
Commit
400d41c
·
verified ·
1 Parent(s): b49afdd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -1
app.py CHANGED
@@ -28,7 +28,22 @@ if st.button("Envoyer"):
28
  st.warning("Veuillez entrer un message!")
29
 
30
  # Styles CSS pour améliorer l'apparence
31
- #st.mark
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
 
34
 
 
28
  st.warning("Veuillez entrer un message!")
29
 
30
  # Styles CSS pour améliorer l'apparence
31
+ st.markdown("""
32
+ <style>
33
+ .st-bx {
34
+ background-color: #f1f1f1;
35
+ border-radius: 10px;
36
+ padding: 10px;
37
+ margin: 10px 0;
38
+ }
39
+ .st-bx h2 {
40
+ color: #4CAF50;
41
+ }
42
+ .st-bx p {
43
+ color: #555;
44
+ }
45
+ </style>
46
+ """, unsafe_allow_html=True)
47
 
48
 
49