1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/assets/less/forms.less

49 lines
934 B
Plaintext
Raw Normal View History

/////////////////////////////////////
// FORMS CSS FOR KREMALICIOUS.COM
/////////////////////////////////////
// Make all forms have space below them
form {
margin: 0 0 @line-height-computed;
}
label {
display: block;
color: rgba(46, 79, 92, .7);
margin-bottom: 0;
// Indicate that 'label' will shift focus to the associated form element
cursor: pointer;
}
select,
textarea,
2013-11-30 17:13:19 +01:00
.input-text,
.input-search {
font-size: @font-size-base;
line-height: @line-height-computed;
font-family: @font-family-base;
color: @text-color;
font-weight: 700;
display: inline-block;
padding: .5em;
background: #fff;
background: rgba(255,255,255,.3);
border: 0;
width: 100%;
.transition();
-webkit-appearance: none;
2013-12-07 19:43:12 +01:00
&:hover {
background: rgba(255,255,255,.5)
}
&:focus {
background: rgba(255,255,255,.7);
outline: 0;
outline: thin dotted \9; /* IE6-9 */
}
// placeholder
2013-12-07 19:43:12 +01:00
.placeholder(rgba(46, 79, 92, .3));
}