Create inputs.less

This commit is contained in:
Owen Versteeg 2013-12-08 16:41:08 -05:00
parent 83bc63b8a6
commit 8cb10be87a

25
less/inputs.less Normal file
View file

@ -0,0 +1,25 @@
textarea, input {
border: 1px solid #ccc;
outline: none;
padding: 6px;
font-size: .8em;
&.smooth {
transition: border .15s ease-in-out;
}
font-family: sans-serif;
&:focus {
border: 1px solid rgb(87, 171, 179);
}
}
textarea, input[type="text"] {
width: 13em;
}
.addon-front {
padding: 6px 11px 6px 10px;
margin-right: -2px;
border: 1px solid #ccc;
border-right: 0;
font-size: .8em;
}