Modify style for mapageperso

This commit is contained in:
2026-07-23 04:25:13 +02:00
committed by kitoy
parent 3046f4ca2c
commit e4aa5cb707

View File

@@ -7,9 +7,11 @@ body {
background-color: rgb(240, 240, 240); /* Ajoutez une couleur de fond pour le contraste */ background-color: rgb(240, 240, 240); /* Ajoutez une couleur de fond pour le contraste */
} }
label {
font-weight:700;
}
.form_main { .form_main {
width: 220px; width: 80%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
@@ -43,15 +45,16 @@ body {
margin: 5px 0 10px 0; margin: 5px 0 10px 0;
z-index: 2; z-index: 2;
text-align: center; text-align: center;
padding-bottom: 30px;
} }
.inputContainer { .inputContainer {
width: 100%; width: 100%;
position: relative; position: relative;
display: flex; display: flow-root;
align-items: center; text-align: center;
justify-content: center;
z-index: 2; z-index: 2;
margin-bottom: 30px;
} }
.inputIcon { .inputIcon {
@@ -61,7 +64,7 @@ body {
.inputField { .inputField {
width: 100%; width: 100%;
height: 30px; height: 20px;
background-color: transparent; background-color: transparent;
border: none; border: none;
border-bottom: 2px solid rgb(173, 173, 173); border-bottom: 2px solid rgb(173, 173, 173);
@@ -71,6 +74,7 @@ body {
font-weight: 500; font-weight: 500;
box-sizing: border-box; box-sizing: border-box;
padding-left: 30px; /* Pour laisser de l'espace pour l'icône */ padding-left: 30px; /* Pour laisser de l'espace pour l'icône */
text-align: center;
} }
.inputField:focus { .inputField:focus {
@@ -84,7 +88,11 @@ body {
font-weight: 500; font-weight: 500;
} }
#button { .errors {
color: red;
}
.button {
z-index: 2; z-index: 2;
position: relative; position: relative;
width: 100%; width: 100%;
@@ -101,7 +109,7 @@ body {
transition: background-color 0.3s; transition: background-color 0.3s;
} }
#button:hover { .button:hover {
background-color: rgb(126, 84, 255); background-color: rgb(126, 84, 255);
} }