insomnia/app/css/layout/forms.scss

33 lines
502 B
SCSS
Raw Normal View History

2016-03-16 05:49:42 +00:00
@import '../constants/dimensions';
@import '../constants/colors';
.form-control {
width: 100%;
background: $bg-super-light;
outline: none;
border: 0;
2016-03-16 20:02:47 +00:00
height: $form-height;
2016-03-16 05:49:42 +00:00
}
.btn {
cursor: pointer;
text-align: center;
padding: $default-padding $default-padding * 1.5;
}
input, button {
2016-03-16 20:02:47 +00:00
box-sizing: border-box;
2016-03-16 05:49:42 +00:00
padding: $default-padding;
2016-03-16 20:02:47 +00:00
font-size: inherit;
2016-03-16 05:49:42 +00:00
background: none;
border: 0;
outline: 0;
width: 100%;
height: 100%;
2016-03-16 20:02:47 +00:00
margin: 0;
2016-03-16 05:49:42 +00:00
}
button {
width: auto;
}