Files
CMS-simplifi-/admin/styleajouter.css
2025-11-02 23:27:55 +01:00

95 lines
1.6 KiB
CSS

/* Styles globaux */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background: linear-gradient(to right, #f4f4f9, #e2e8f0); /* léger dégradé */
color: #333;
}
/* Titres */
h1 {
color: #1a202c;
border-bottom: 3px solid #63b3ed;
padding-bottom: 12px;
margin-top: 0;
font-weight: 600;
}
/* Formulaire */
form {
background-color: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
max-width: 600px;
margin-top: 20px;
}
/* Labels et champs */
label {
display: block;
margin-bottom: 10px;
font-weight: 600;
}
input[type="text"],
input[type="password"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #cbd5e0;
border-radius: 6px;
box-sizing: border-box;
font-size: 1rem;
}
/* Boutons */
button {
background-color: #3182ce;
color: #fff;
padding: 12px 20px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2b6cb0;
}
/* Liens */
a {
margin-left: 10px;
color: #3182ce;
text-decoration: none;
font-weight: 500;
}
a:hover {
text-decoration: underline;
}
/* Messages d'erreur */
.error {
color: #c53030;
background-color: #fed7d7;
border: 1px solid #f56565;
padding: 10px;
border-radius: 6px;
margin-bottom: 15px;
}
/* Responsive */
@media (max-width: 640px) {
body {
padding: 10px;
}
form {
padding: 15px;
}
}