mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-09 21:11:40 +01:00
61 lines
1006 B
CSS
61 lines
1006 B
CSS
|
/* Reset CSS */
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
/* Body styles */
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f4f4f4;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 600px;
|
||
|
margin: 0 auto;
|
||
|
padding: 20px;
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.form-group {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
display: block;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.form-control {
|
||
|
width: 100%;
|
||
|
padding: 8px;
|
||
|
font-size: 16px;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
button[type="submit"] {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
padding: 10px;
|
||
|
border: none;
|
||
|
border-radius: 4px;
|
||
|
background-color: #5c10d6;
|
||
|
color: #fff;
|
||
|
font-size: 16px;
|
||
|
cursor: pointer;
|
||
|
transition: background-color 0.3s ease;
|
||
|
}
|
||
|
|
||
|
button[type="submit"]:hover {
|
||
|
background-color: #330c72;
|
||
|
}
|