2023-03-05 17:45:43 +01:00
|
|
|
.content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form_contact {
|
|
|
|
--base-padding: .5rem 1rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 15rem;
|
|
|
|
margin-top: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form_contact input {
|
|
|
|
padding: var(--base-padding);
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form_contact button {
|
|
|
|
align-self: center;
|
|
|
|
padding: var(--base-padding);
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
cursor: pointer;
|
2023-03-07 16:36:16 +01:00
|
|
|
background-color: white;
|
|
|
|
color: black;
|
2023-03-05 17:45:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.form_contact textarea {
|
|
|
|
height: 8rem;
|
|
|
|
resize: none;
|
|
|
|
padding: var(--base-padding);
|
|
|
|
}
|
|
|
|
|
|
|
|
.form_contact input, textarea, button {
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|