quelque amelioration

This commit is contained in:
2025-11-02 23:20:42 +01:00
parent 26c06eae90
commit 296b5c5a62
19 changed files with 461 additions and 328 deletions

View File

@@ -1,97 +1,116 @@
/* Styles globaux */
body {
font-family: Arial, sans-serif;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #ececec; /* gris clair pour le fond */
background: linear-gradient(to right, #f0f2f5, #e2e8f0);
color: #333;
}
/* En-tête */
header {
background-color: #555; /* gris foncé */
background-color: #2d3748; /* gris foncé plus doux */
color: #fff;
padding: 15px;
border-radius: 6px;
margin-bottom: 20px;
padding: 20px;
border-radius: 10px;
text-align: center;
margin-bottom: 25px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
font-size: 1.8rem;
font-size: 2rem;
font-weight: 600;
}
header p {
margin: 5px 0 0 0;
margin: 8px 0 0 0;
}
header a {
color: #cfcfcf;
color: #a0aec0;
text-decoration: none;
font-weight: 500;
}
header a:hover {
text-decoration: underline;
color: #fff;
text-decoration: underline;
}
/* Titres */
h2, h3 {
color: #333;
margin-top: 20px;
color: #1a202c;
margin-top: 25px;
font-weight: 600;
}
/* Lien Ajouter un article */
a {
color: #555;
color: #3182ce;
text-decoration: none;
font-weight: bold;
font-weight: 500;
}
a:hover {
text-decoration: underline;
}
/* Permet de cree des tableau */
/* Tableau */
table {
width: 100%;
border-collapse: collapse;
margin-top: 15px;
background-color: #fff; /* fond blanc pour contraster */
border-radius: 6px;
margin-top: 20px;
background-color: #fff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
table th, table td {
padding: 10px;
border: 1px solid #ccc;
padding: 12px;
border: 1px solid #e2e8f0;
text-align: left;
font-size: 0.95rem;
}
table th {
background-color: #bbb; /* gris moyen pour l'entête */
background-color: #4a5568; /* gris foncé pour header */
color: #fff;
font-weight: 600;
}
/* Lignes de tableau */
/* Lignes alternées */
table tr:nth-child(even) {
background-color: #f2f2f2;
background-color: #f7fafc;
}
/* Actions */
table a {
color: #2a73cc;
color: #3182ce;
font-weight: 500;
}
table a:hover {
color: #195aa7;
color: #2b6cb0;
text-decoration: underline;
}
/* Séparateurs */
hr {
border: 0;
border-top: 1px solid #ccc;
margin: 20px 0;
}
border-top: 1px solid #cbd5e0;
margin: 25px 0;
}
/* Responsive */
@media (max-width: 640px) {
body {
padding: 10px;
}
table th, table td {
padding: 8px;
}
}