1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
| * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
margin-top: 40px;
margin-bottom: 40px;
color: black;
display: flex;
background-color: aliceblue;
justify-content: space-around;
align-items: center;
min-height: 100vh;
}
.formulaire {
box-shadow: 0 35px 35px;
background-color: aquamarine;
padding: 40px;
border-radius: 15px;
}
h1 {
display: flex;
justify-content: center;
border-bottom: 1px solid rgb(119, 130, 140);
padding-bottom: 10px;
font-family: 'Roboto', sans-serif;
}
.left_side {
padding-top: 10px;
padding-bottom: 20px;
display: flex;
position: relative;
flex-direction: column;
}
label {
padding-bottom: 5px;
}
input {
height: 30px;
border: 1px solid burlywood;
border-radius: 5px;
padding-left: 30px;
outline: 1px solid burlywood;
;
}
.botom {
display: flex;
justify-content: center;
flex-direction: column;
}
.botom .envoyer {
display: flex;
justify-content: center;
padding-bottom: 10px;
}
.botom .envoyer button {
padding: 10px;
border-radius: 20px;
}
.botom .envoyer button:hover {
background-color: burlywood;
padding: 10px;
border-radius: 20px;
}
i {
position: relative;
left: 0;
top: -25px;
padding-left: 10px;
}
a {
text-decoration: none;
color: black;
}
.fa-eye {
display: flex;
justify-content: flex-start;
}
td,
th {
border: 1px solid;
} |
Partager