sms-pager/app/assets/stylesheets/organisms/forms.scss

38 lines
469 B
SCSS
Raw Normal View History

2015-10-03 15:15:19 -05:00
form {
width: 100%;
label {
display: inline-block;
margin: 0.6em 0 0;
width: 100%;
&:after {
content: ": ";
}
}
input {
display: block;
2015-10-04 20:27:03 -05:00
font-size: 14px;
line-height: 1.6em;
2015-10-03 15:15:19 -05:00
margin: 0 0 0.6em;
padding: 5px;
}
[type=submit] {
margin: 0.6em 0;
}
textarea {
height: 5em;
max-width: 300px;
padding: 5px;
width: calc(100% - 30px);
}
2015-10-04 20:27:03 -05:00
fieldset {
border: 0;
2015-10-07 22:03:31 -05:00
margin: 15px;
2015-10-04 20:27:03 -05:00
}
2015-10-03 15:15:19 -05:00
}