mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
53 lines
1.0 KiB
Plaintext
53 lines
1.0 KiB
Plaintext
/////////////////////////////////////
|
|
// 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;
|
|
}
|
|
|
|
// infield labels
|
|
.js form p { position: relative; }
|
|
.js form p label { position: absolute; top: .6em; left: .6em;}
|
|
|
|
select,
|
|
textarea,
|
|
.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;
|
|
|
|
&:hover {
|
|
background: rgba(255,255,255,.5)
|
|
}
|
|
|
|
&:focus {
|
|
background: rgba(255,255,255,.7);
|
|
outline: 0;
|
|
outline: thin dotted \9; /* IE6-9 */
|
|
}
|
|
|
|
// placeholder
|
|
.placeholder(rgba(46, 79, 92, .3));
|
|
}
|