Files
cachet-docker/app/assets/sass/modules/_forms.scss
James Brooks c2c78caa3f Closes #265
2015-01-04 19:27:01 +00:00

36 lines
718 B
SCSS

label {
font-size: 14px;
}
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
@include box-shadow(none !important);
@include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
&:focus {
border-color: #66afe9;
}
}
.component-inline {
@media (max-width: $screen-xs-max) {
.radio-items {
text-align: left;
.radio-inline {
margin-left: 0;
width: 100%;
}
}
}
}