Skip to content

Instantly share code, notes, and snippets.

@usm4n
Created December 7, 2013 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save usm4n/7839211 to your computer and use it in GitHub Desktop.
Save usm4n/7839211 to your computer and use it in GitHub Desktop.
drop down css
#fill_nav{
position: relative;
background-image: url(images/nav_search_fill.png);
background-position: top left;
background-attachment: scroll;
background-repeat: repeat-x;
height:inherit;
width:470px;
margin-left: 15px;
padding:1px;
}
#fill_nav ul {
list-style: none;
position:relative;
font-size: 13px;
margin-top:9px;
padding:0px;
}
#fill_nav ul li {
display:block;
float: left;
line-height: 30px;
height: 30px;
position: relative;
}
#fill_nav ul li a {
display: block;
line-height: 30px;
height: 30px;
padding : 0 10px;
text-decoration: none;
color:#ececec;
-webkit-text-shadow:1px 1px 0px #333;
-moz-text-shadow: 1px 1px 0px #333;
text-shadow: 1px 1px 0px #333;
}
#fill_nav ul li a:hover{
color:#EA813E;
}
#fill_nav ul ul {
display:none;
position:absolute;
top:21px;
margin-left:0px;
background-color: #1A8EC5;
border-color:#ffffff;
border-style:solid;
border-width:2px;
border-top:none;
border-bottom-right-radius:7px;
border-bottom-left-radius:7px;
box-shadow:2px 2px 2px #333;
-webkit-text-shadow:1px 1px 0px #333;
-moz-text-shadow: 1px 1px 0px #333;
}
#fill_nav ul ul li {
float: none;
width:150px;
}
#fill_nav ul li:hover > ul{
display:block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment