Sauvegarde de l'ajout de projet

This commit is contained in:
Esteban
2026-05-29 13:56:52 +02:00
parent 3c40745ecf
commit b994a8cfb9
7 changed files with 209 additions and 2 deletions
+98
View File
@@ -111,4 +111,102 @@ nav a {
.login-card input[type="submit"]:hover {
background-color: #5a52e0;
}
/* ---- PAGE AJOUT PROJET ---- */
.project-container {
display: flex;
justify-content: center;
padding: 40px 20px;
}
.project-card {
background-color: #111116; /* Fond très sombre comme sur l'image */
border: 1px dashed #3a3a5e; /* Bordure pointillée */
border-radius: 12px;
padding: 30px;
width: 800px;
}
.project-header h2 {
margin-top: 0;
font-size: 20px;
display: flex;
align-items: center;
}
.badge-admin {
color: #6c63ff; /* Ton violet */
font-size: 14px;
margin-left: 10px;
font-weight: normal;
}
.form-row {
display: flex;
gap: 20px;
margin-bottom: 20px;
}
.half-width {
flex: 1;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
color: #aaaaaa;
margin-bottom: 8px;
font-size: 14px;
}
/* Inputs reprenant ton style login */
.project-card input[type="text"],
.project-card input[type="url"],
.project-card textarea {
width: 100%;
background-color: #1a1a24;
border: 1px solid #2a2a3e;
border-radius: 6px;
color: white;
padding: 12px;
box-sizing: border-box;
}
.project-card textarea {
min-height: 100px;
resize: vertical;
}
/* Zone pour l'URL (qui remplace l'upload de fichier) */
.url-input-zone {
border: 1px dashed #3a3a5e;
border-radius: 6px;
padding: 40px 20px;
text-align: center;
background-color: #15151c;
}
.url-input-zone input {
width: 80%;
margin-top: 15px;
}
/* Bouton violet */
.btn-submit {
background-color: #6c63ff;
color: white;
border: none;
border-radius: 8px;
padding: 12px 24px;
font-size: 15px;
font-weight: bold;
cursor: pointer;
}
.btn-submit:hover {
background-color: #5a52e0;
}