Files
runosaari.net/assets/css/pages/form.scss
2021-05-16 21:03:54 +03:00

48 lines
543 B
SCSS

form {
display: flex;
flex-direction: column;
}
.checkbox-container {
display: flex;
label {
text-align: left;
}
}
.text-input {
display: flex;
align-items: center;
label {
width: 29%;
text-align: left;
}
input {
width: 71%;
}
@media screen and (max-width: 600px) {
label {
width: 47%;
}
}
}
input {
margin-bottom: 10px;
}
.confirmed-input {
display: flex;
justify-content: center;
padding-bottom: 50px;
}
.submit-button {
padding-top: 31px;
padding-bottom: 31px;
}