43 lines
630 B
SCSS
43 lines
630 B
SCSS
fieldset {
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="email"],
|
|
input[type="date"],
|
|
select,
|
|
textarea {
|
|
@extend %large;
|
|
@extend %title;
|
|
background: $gray-light;
|
|
border: 0;
|
|
color: $grayer;
|
|
//height: 40px;
|
|
margin: 0;
|
|
padding: 8px;
|
|
width: 100%;
|
|
@include placeholder {
|
|
color: $white;
|
|
}
|
|
}
|
|
input[type="password"] {
|
|
@extend %title;
|
|
}
|
|
|
|
textarea {
|
|
max-height: 10rem;
|
|
}
|
|
|
|
.checksley-error-list {
|
|
margin-bottom: 0;
|
|
li {
|
|
color: $red;
|
|
padding: .2rem;
|
|
}
|
|
}
|