html - Packed together input boxes form style -
i'm wondering if there official name style of form: https://www.tumblr.com/login or https://www.tumblr.com/register input boxes packed line in between, , if there existing library can use make these forms?
there no specific name type, @ least not know of. it's made using css styling.
something along these lines tumblr uses:
this css
.signup_form { background: -moz-linear-gradient(center top , #dde5ed 0px, #f2f3f4 100%) repeat scroll 0 0 transparent; border: 1px solid rgba(0, 0, 0, 0.8); border-radius: 8px 8px 8px 8px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.36) inset, 0 1px 0 rgba(255, 255, 255, 0.15); margin: 0; overflow: hidden; padding: 0; position: relative; width: 245px; } .signup_form .row { border-top: 1px solid rgba(0, 0, 0, 0.12); position: relative; }
and html
<div id="signup_form" class="signup_form"> <div class="row"> <label>email</label> </div> <div class="row"> <label>password</label> </div> </div>
Comments
Post a Comment