lbry.com/web/scss/_form.scss
2016-07-04 14:07:52 -04:00

67 lines
No EOL
849 B
SCSS

@import "global";
$input-width: 300px;
label[for], .label-radio
{
cursor: pointer;
}
input[type="email"], input[type="text"]
{
border: 0 none;
border: 1px solid rgba(160,160,160,.5);
padding-left: 5px;
padding-right: 5px;
width: $input-width;
height: $spacing-vertical * 1.5;
}
.span4 input[type="email"] /*hack rule fix me*/
{
width: 100%;
}
form .full-width
{
width: 100%;
}
textarea
{
width: 100%;
}
.form-row
{
margin-bottom: $spacing-vertical;
> label
{
font-size: 0.8em;
opacity: 0.9;
font-weight: bold;
}
}
input[type="checkbox"]
{
-webkit-appearance: checkbox;
}
input[type="radio"]
{
-webkit-appearance: radio;
}
.mail-submit, .invite-submit
{
input
{
margin-right: 10px;
}
input, .btn-primary
{
margin-bottom: $spacing-vertical / 2;
vertical-align: bottom;
}
}