Update style.css
Browse files
style.css
CHANGED
@@ -1,18 +1,44 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
}
|
5 |
-
|
6 |
-
/* Corps de page avec un gradient */
|
7 |
html, body {
|
8 |
-
/*
|
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 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
footer {
|
17 |
display: none !important;
|
18 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* ---------------------------
|
2 |
+
1. Styles généraux
|
3 |
+
----------------------------*/
|
|
|
|
|
|
|
4 |
html, body {
|
5 |
+
/* Dégradé diagonal du rose (#ffafbd) vers le pêche (#ffc3a0) */
|
6 |
background: linear-gradient(135deg, #ffafbd, #ffc3a0) no-repeat center center fixed !important;
|
7 |
background-size: cover;
|
8 |
margin: 0;
|
9 |
padding: 0;
|
10 |
}
|
11 |
|
12 |
+
/* En-têtes h1 centrés */
|
13 |
+
h1 {
|
14 |
+
text-align: center;
|
15 |
+
display: block;
|
16 |
+
}
|
17 |
+
|
18 |
+
/* Masquer le footer (Gradio, si tu l'utilises) */
|
19 |
footer {
|
20 |
display: none !important;
|
21 |
}
|
22 |
+
|
23 |
+
/* ---------------------------
|
24 |
+
3. Bulles de messages
|
25 |
+
----------------------------*/
|
26 |
+
/* Bulle pour le message de l'utilisateur */
|
27 |
+
.user-message {
|
28 |
+
background-color: #e0f7fa; /* Bleu clair */
|
29 |
+
color: #333; /* Couleur du texte */
|
30 |
+
border-radius: 8px;
|
31 |
+
padding: 0.5rem 1rem;
|
32 |
+
margin: 0.5rem 0;
|
33 |
+
display: inline-block;
|
34 |
+
}
|
35 |
+
|
36 |
+
/* Bulle pour le message de l'assistant */
|
37 |
+
.assistant-message {
|
38 |
+
background-color: #fff8e1; /* Jaune pastel */
|
39 |
+
color: #333;
|
40 |
+
border-radius: 8px;
|
41 |
+
padding: 0.5rem 1rem;
|
42 |
+
margin: 0.5rem 0;
|
43 |
+
display: inline-block;
|
44 |
+
}
|