Mahavaury2 commited on
Commit
cd0b675
·
verified ·
1 Parent(s): becbb7f

ajout gradient couleur

Browse files
Files changed (1) hide show
  1. style.css +7 -2
style.css CHANGED
@@ -3,11 +3,16 @@ h1 {
3
  display: block;
4
  }
5
 
 
6
  html, body {
7
- background-color: #FFEBCD !important; /* Exemple pastel pêche */
 
 
 
 
8
  }
9
 
10
- /* Masquer le footer Gradio */
11
  footer {
12
  display: none !important;
13
  }
 
3
  display: block;
4
  }
5
 
6
+ /* Corps de page avec un gradient */
7
  html, body {
8
+ /* Exemple : dégradé diagonal du rose clair vers le pêche */
9
+ background: linear-gradient(135deg, #ffafbd, #ffc3a0) no-repeat center center fixed !important;
10
+ background-size: cover;
11
+ margin: 0;
12
+ padding: 0;
13
  }
14
 
15
+ /* Masquer le footer Gradio (si tu utilises Gradio) */
16
  footer {
17
  display: none !important;
18
  }