Created
July 21, 2013 06:37
-
-
Save alimd/6047724 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
padding : 0; | |
margin : 0; | |
} | |
menu:after { | |
content: ' '; | |
display: block; | |
width : 0; | |
height : 0; | |
clear : both; | |
} | |
nav { | |
max-width: 130px; | |
} | |
nav menu { | |
list-style-type : none; | |
background-color: #e82; | |
} | |
nav li { | |
position: relative; | |
} | |
nav li:hover { | |
background-color: #C72; | |
} | |
nav a { | |
color : white; | |
display : block; | |
padding : 7px 14px; | |
font-family : "Lucida Grande", "Trebuchet MS", Verdana, sans-serif; | |
font-size : 17px; | |
text-transform : capitalize; | |
text-decoration : none; | |
white-space: nowrap; | |
} | |
nav li menu { | |
position: absolute; | |
left: 100%; | |
top: 50px; | |
opacity: 0; | |
-webkit-transition: all 0.5s; | |
pointer-events: none; | |
} | |
nav li:hover > menu{ | |
top: 0; | |
opacity: 1; | |
pointer-events: auto; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<nav> | |
<menu> | |
<li><a href="#">home</a></li> | |
<li><a href="#">about me</a></li> | |
<li> | |
<a href="#">portfolio</a> | |
<menu> | |
<li><a href="#">logo</a></li> | |
<li><a href="#">poster</a></li> | |
<li> | |
<a href="#">catalogue</a> | |
<menu> | |
<li><a href="#">2007</a></li> | |
<li> | |
<a href="#">2009</a> | |
<menu> | |
<li><a href="#">Edition 1</a></li> | |
<li> | |
<a href="#">Edition 2</a> | |
<menu> | |
<li><a href="#">Part 1</a></li> | |
<li><a href="#">Part 2</a></li> | |
<li><a href="#">Part 3</a></li> | |
</menu> | |
</li> | |
<li><a href="#">Edition 3</a></li> | |
</menu> | |
</li> | |
<li><a href="#">2011</a></li> | |
<li><a href="#">2013</a></li> | |
</menu> | |
</li> | |
<li><a href="#">business card</a></li> | |
</menu> | |
</li> | |
<li><a href="#">blog</a></li> | |
<li> | |
<a href="#">gallery</a> | |
<menu> | |
<li><a href="#">g1</a></li> | |
<li><a href="#">g2</a></li> | |
<li><a href="#">g3</a></li> | |
<li><a href="#">g4</a></li> | |
</menu> | |
</li> | |
<li><a href="#">contact me</a></li> | |
</menu> | |
</nav> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Corrupti quibusdam impedit mollitia dolor debitis nostrum cupiditate ut quasi suscipit culpa doloremque aliquid! Iste asperiores exercitationem eligendi harum error odio ullam eaque minima temporibus iusto aut vel non sed suscipit laboriosam dolorem excepturi obcaecati vitae incidunt reiciendis quos pariatur unde minus.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Live : http://jsbin.com/afazop/13/edit