37 lines
592 B
SCSS
37 lines
592 B
SCSS
@import "constants";
|
|
@import "colors";
|
|
|
|
.form {
|
|
overflow: hidden;
|
|
|
|
h1 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
margin-bottom: $default-spacer;
|
|
display: inline-block;
|
|
}
|
|
|
|
input[type=text],
|
|
input[type=email],
|
|
input[type=password],
|
|
textarea {
|
|
display: block;
|
|
width: 100%;
|
|
border-radius: 4px;
|
|
border: solid 1px $border-grey;
|
|
margin-bottom: 4 * $default-spacer;
|
|
padding: $default-padding;
|
|
|
|
&:disabled {
|
|
background-color: $border-grey;
|
|
}
|
|
}
|
|
|
|
.send {
|
|
float: right;
|
|
margin-bottom: $default-padding;
|
|
}
|
|
}
|