demarches-normaliennes/app/assets/stylesheets/new_design/forms.scss

33 lines
447 B
SCSS
Raw Normal View History

2017-06-14 17:39:46 +02:00
@import "colors";
.form {
label,
input {
font-size: 14px;
}
label,
input[type=submit] {
margin-top: 24px;
}
label {
margin-bottom: 8px;
display: inline-block;
}
input[type=text],
2017-06-20 10:03:49 +02:00
input[type=email],
2017-06-14 17:39:46 +02:00
input[type=password] {
display: block;
width: 100%;
border-radius: 4px;
border: solid 1px $border-grey;
padding: 16px;
2017-06-20 10:03:49 +02:00
&:disabled {
background-color: $border-grey;
}
2017-06-14 17:39:46 +02:00
}
}