Bluebeam CSS Navigation
A perfect and simple dropdown without any messy javascript to deal with!
by ajrdesign
HTML
<div class="globalheader">
<ul id="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Products</a>
<ul class="dropdown">
<li><a href="#">Revu</a></li>
<li><a href="#">Vu - Free Viewer</a></li>
<li><a href="#">Q</a></li>
<li><a href="#">bFX</a></li>
<li><a href="#">Studio Server</a></li>
</ul>
</li>
<li><a href="#">Solutions</a>
</li>
<li><a href="#">Insider</a>
</li>
</ul>
<div class="clear"></div>
</div>
CSS
.globalheader {
width:100%;
background: rgb(68,68,68); /* Old browsers */
background: -moz-linear-gradient(top, rgba(68,68,68,1) 0%, rgba(34,34,34,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(68,68,68,1)), color-stop(100%,rgba(34,34,34,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 ); /* IE6-9 */
-webkit-box-shadow:
inset 0 -2px 0 #0083db;
box-shadow:
inset 0 -2px 0 #0083db;
-moz-box-shadow:
inset 0 -2px 0 #0083db;
}
.globalheader ul {
font-family: "Century Gothic", CenturyGothic, AppleGothic, arial, sans-serif;
font-size: 15px;
margin: 0;
padding: 0;
list-style: none;
}
.globalheader ul li {
display: block;
position: relative;
float: left;
background: rgb(68,68,68); /* Old browsers */
background: -moz-linear-gradient(top, rgba(68,68,68,1) 0%, rgba(34,34,34,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(68,68,68,1)), color-stop(100%,rgba(34,34,34,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(68,68,68,1) 0%,rgba(34,34,34,1) 100%); /* W3C */
filter:...