Handl Login
Handl Login Window
by kizer
HTML
<div id="login">
<header>
Handl Sign In<h6> alpha</h6>
</header>
<input type="text" name="user name" placeholder="Email…" spellcheck="true" aria-label="email" />
<input type="password" name="password" placeholder="Password…" spellcheck="true" aria-label="password" class="disabled" />
<button type="submit" id="login-submit"></button>
</div>
CSS
/* REALLY QUICK AND DIRTY CSS - NEEDS CLEANUP FOR PRODUCTION */
/* BEFORE USING - Return Icon, should not be layered over input
rather use mock input area to insert icon */
html {
height: 100%;
/* this is needed to stretch the gradient */
background: #c6c9cc;
background: #c6c9cc -webkit-gradient(radial, 50% 0, 150, 50% 0, 300, from(#e2e2e2), to(#c6c9cc)) no-repeat;
background-image: -moz-radial-gradient(100% 100% 90deg, #2F2727, #1a82f7);
background-image: -moz-radial-gradient(50% 20% 90deg,ellipse cover, #e2e2e2, #c6c9cc);
}
body:before {
content: "";
position: fixed;
top: -10px;
left: 0;
width: 100%;
height: 10px;
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
box-shadow: 0px 0px 10px rgba(0,0,0,.8);
z-index: 100;
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
/*cursor: default;*/
}
#login {
postion: relative; top: 20px;
width: 425px; height: 190px;
background: white;
border-radius: 5px;
border: 1px solid rgba(65,63,63, .68);
box-shadow: 0 1px 3px rgba(0,0,0, .45);
margin: 0 auto;
margin-top: 20px;
}
header {
width: 100%; height: 40px;
background-color: #53ac7e;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(83, 172, 126)), to(rgb(52, 110, 57)));
background-image: -webkit-linear-gradient(top, rgb(83, 172, 126), rgb(52, 110, 57));
background-image: -moz-linear-gradient(top, rgb(83, 172, 126), rgb(52, 110, 57));
background-image: -o-linear-gradient(top, rgb(83, 172, 126), rgb(52, 110, 57));
background-image: -ms-linear-gradient(top, rgb(83, 172, 126), rgb(52, 110, 57));
background-image: linear-gradient(top, rgb(83, 172, 126), rgb(52, 110, 57));
filter:...