Last active
August 29, 2015 14:17
-
-
Save layoutph/809b56078d5e01fc51e8 to your computer and use it in GitHub Desktop.
Pure CSS Dropdown
This file contains 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
<div id="container"> | |
<nav> | |
<ul> | |
<li><a href="#">Home</a></li> | |
<li><a href="#">WordPress</a> | |
<!-- First Tier Drop Down --> | |
<ul> | |
<li><a href="#">Themes</a></li> | |
<li><a href="#">Plugins</a></li> | |
<li><a href="#">Tutorials</a></li> | |
</ul> | |
</li> | |
<li><a href="#">Web Design</a> | |
<!-- First Tier Drop Down --> | |
<ul> | |
<li><a href="#">Resources</a></li> | |
<li><a href="#">Links</a></li> | |
<li><a href="#">Tutorials</a> | |
<!-- Second Tier Drop Down --> | |
<ul> | |
<li><a href="#">HTML/CSS</a></li> | |
<li><a href="#">jQuery</a></li> | |
<li><a href="#">Other</a> | |
<!-- Third Tier Drop Down --> | |
<ul> | |
<li><a href="#">Stuff</a></li> | |
<li><a href="#">Things</a></li> | |
<li><a href="#">Other Stuff</a></li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
</ul> | |
</li> | |
<li><a href="#">Graphic Design</a></li> | |
<li><a href="#">Inspiration</a></li> | |
<li><a href="#">Contact</a></li> | |
<li><a href="#">About</a></li> | |
</ul> | |
</nav> | |
<h1>Pure CSS Drop Down Menu</h1> | |
<p> A simple dropdown navigation menu made with CSS Only. Dropdowns are marked with a plus sign ( + )</p> | |
<p>Read tutorial <a target="_blank" href="http://andornagy.com/css-dropdown-menu/">here</a></p> | |
</div> | |
/* CSS Document */ | |
@import url(http://fonts.googleapis.com/css?family=Open+Sans); | |
@import url(http://fonts.googleapis.com/css?family=Bree+Serif); | |
body { | |
background: #212121; | |
font-size:22px; | |
line-height: 32px; | |
color: #ffffff; | |
word-wrap:break-word !important; | |
font-family: 'Open Sans', sans-serif; | |
} | |
h1 { | |
font-size: 60px; | |
text-align: center; | |
color: #FFF; | |
} | |
h3 { | |
font-size: 30px; | |
text-align: center; | |
color: #FFF; | |
} | |
h3 a { | |
color: #FFF; | |
} | |
a { | |
color: #FFF; | |
} | |
h1 { | |
margin-top: 100px; | |
text-align:center; | |
font-size:60px; | |
font-family: 'Bree Serif', 'serif'; | |
} | |
#container { | |
margin: 0 auto; | |
max-width: 890px; | |
} | |
p { | |
text-align: center; | |
} | |
#relatedContent { | |
max-width: 800px; | |
margin: 200px auto; | |
} | |
#relatedContent .item { | |
max-width: 44%; | |
padding: 3%; | |
float: left; | |
text-align: center; | |
} | |
#relatedContent .item a img { | |
max-width: 100%; | |
} | |
nav { | |
margin: 50px 0; | |
background-color: #E64A19; | |
} | |
nav ul { | |
padding:0; | |
margin:0; | |
list-style: none; | |
position: relative; | |
} | |
nav ul li { | |
display:inline-block; | |
background-color: #E64A19; | |
} | |
nav a { | |
display:block; | |
padding:0 10px; | |
color:#FFF; | |
font-size:20px; | |
line-height: 60px; | |
text-decoration:none; | |
} | |
nav a:hover { | |
background-color: #000000; | |
} | |
/* Hide Dropdowns by Default */ | |
nav ul ul { | |
display: none; | |
position: absolute; | |
top: 60px; | |
} | |
/* Display Dropdowns on Hover */ | |
nav ul li:hover > ul { | |
display:inherit; | |
} | |
/* Fisrt Tier Dropdown */ | |
nav ul ul li { | |
width:170px; | |
float:none; | |
display:list-item; | |
position: relative; | |
} | |
/* Second, Third and more Tiers */ | |
nav ul ul ul li { | |
position: relative; | |
top:-60px; | |
left:170px; | |
} | |
/* Change this in order to change the Dropdown symbol */ | |
li > a:after { content: ' +'; } | |
li > a:only-child:after { content: ''; } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment