Simple and effective dropdown login box
Sleek & Modern styled login
by Bhupesh Kushwaha
HTML
<header class="cf">
<nav>
<ul>
<li id="login">
<a id="login-trigger" href="#">
Log in <span>▼</span>
</a>
<div id="login-content">
<form>
<fieldset id="inputs">
<input id="username" type="email" name="Email" placeholder="Your email address" required>
<input id="password" type="password" name="Password" placeholder="Password" required>
</fieldset>
<fieldset id="actions">
<input type="submit" id="submit" value="Log in">
<label><input type="checkbox" checked="checked"> Keep me signed in</label>
</fieldset>
</form>
</div>
</li>
<li id="signup">
<a href="">Sign up FREE</a>
</li>
</ul>
</nav>
</header>
CSS
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
fieldset {
margin: 0;
padding: 0;
border: 0;
}
input:focus,textarea:focus {
outline: none;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: #444;
background: #eee url("http://jenniferperrin.com/image/background.gif");
margin: 0;
font-size: 12px;
}
/*----------------------*/
.cf:before, .cf:after {
content:"";
display:table;
}
.cf:after {
clear:both;
}
.cf {
zoom:1;
}
/*----------------------*/
header {
padding: 8px 10%;
border-bottom: 1px solid #444;
background-color: #444;
background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111));
background-image: -webkit-linear-gradient(top, #444, #111);
background-image: -moz-linear-gradient(top, #444, #111);
background-image: -ms-linear-gradient(top, #444, #111);
background-image: -o-linear-gradient(top, #444, #111);
background-image: linear-gradient(top, #444, #111);
-moz-box-shadow: 0 -3px 3px rgba(0,0,0,.5) inset;
-webkit-box-shadow: 0 -3px 3px rgba(0,0,0,.5) inset;
box-shadow: 0 -3px 3px rgba(0,0,0,.5) inset;
}
/*----------------------*/
nav ul {
margin: 0;
padding: 0;
list-style: none;
position: relative;
float: right;
background: #000;
border-bottom: 1px solid #444;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
nav li {
float: left;
}
nav #login {
border-right: 1px solid #444;
-moz-box-shadow: 1px 0 0 #222;
-webkit-box-shadow: 1px 0 0 #444;
box-shadow: 1px 0 0 #444;
}
nav #login-trigger,
nav #signup a {
display: inline-block;
*display: inline;
*zoom: 1;
height: 25px;
line-height: 25px;
font-weight: bold;
padding: 0 8px;
text-decoration: none;
color: #d79800;
text-shadow: 0 1px 0 #444;
}
nav #signup a {
-moz-border-radius: 0 3px 3px 0;
-webkit-border-radius: 0 3px 3px 0;
border-radius: 0 3px...
JavaScript
$(document).ready(function(){
$('#login-trigger').click(function() {
$(this).next('#login-content').slideToggle();
$(this).toggleClass('active');
if ($(this).hasClass('active')) $(this).find('span').html('▲')
else $(this).find('span').html('▼')
})
});