91 lines
1.5 KiB
CSS
91 lines
1.5 KiB
CSS
/* === STYLE GLOBAL === */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #1111b9;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #333;
|
|
}
|
|
|
|
/* === HEADER & TITRES === */
|
|
h1, h2, h3 {
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
/* === FORMULAIRES === */
|
|
form {
|
|
max-width: 400px;
|
|
margin: 20px auto;
|
|
padding: 70px;
|
|
background-color: white;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
input[type="text"], input[type="password"], textarea {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-top: 5px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button {
|
|
background-color: #a7c2d3;
|
|
color: rgb(214, 89, 89);
|
|
border: none;
|
|
padding: 10px 15px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #a11d1d;
|
|
}
|
|
|
|
/* === TABLEAUX === */
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 90%;
|
|
margin: 20px auto;
|
|
background-color: white;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #ddd;
|
|
padding: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background-color: #792020;
|
|
color: rgb(163, 31, 31);
|
|
}
|
|
|
|
/* === LIENS === */
|
|
a {
|
|
text-decoration: none;
|
|
color: #bd1212;
|
|
font-weight: bold;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* === MESSAGES === */
|
|
p {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
p[style*="color:green"] {
|
|
color: #27ae60 !important;
|
|
}
|
|
|
|
p[style*="color:red"] {
|
|
color: #e74c3c !important;
|
|
}
|