first commit

This commit is contained in:
2025-11-02 21:27:45 +01:00
commit 9f268216d8
27 changed files with 1275 additions and 0 deletions

97
admin/styleboard.css Normal file
View File

@@ -0,0 +1,97 @@
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #ececec; /* gris clair pour le fond */
color: #333;
}
/* En-tête */
header {
background-color: #555; /* gris foncé */
color: #fff;
padding: 15px;
border-radius: 6px;
margin-bottom: 20px;
}
header h1 {
margin: 0;
font-size: 1.8rem;
}
header p {
margin: 5px 0 0 0;
}
header a {
color: #cfcfcf;
text-decoration: none;
}
header a:hover {
text-decoration: underline;
color: #fff;
}
/* Titres */
h2, h3 {
color: #333;
margin-top: 20px;
}
/* Lien Ajouter un article */
a {
color: #555;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
/* Permet de cree des tableau */
table {
width: 100%;
border-collapse: collapse;
margin-top: 15px;
background-color: #fff; /* fond blanc pour contraster */
border-radius: 6px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
table th, table td {
padding: 10px;
border: 1px solid #ccc;
text-align: left;
}
table th {
background-color: #bbb; /* gris moyen pour l'entête */
color: #fff;
}
/* Lignes de tableau */
table tr:nth-child(even) {
background-color: #f2f2f2;
}
/* Actions */
table a {
color: #2a73cc;
}
table a:hover {
color: #195aa7;
text-decoration: underline;
}
/* Séparateurs */
hr {
border: 0;
border-top: 1px solid #ccc;
margin: 20px 0;
}