Created
December 21, 2011 20:27
-
-
Save parkr/1507559 to your computer and use it in GitHub Desktop.
Nav bar for parkermoore.de
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
/** | |
* Nav bar for parkermoore.de | |
*/ | |
@import url("http://www.parkermoore.de/dump/new_home.css"); | |
nav { | |
border-top: #ddd 1px solid; | |
border-bottom: #ddd 1px solid; | |
text-align: center; | |
} | |
nav > p { | |
padding: 0px; | |
margin: 0px; | |
} | |
nav > p > a { | |
display: inline-block; | |
width: 110px; | |
max-width: 200px; | |
padding: 20px 0px; | |
} | |
nav > p > a:hover { | |
background-color: #6FAE79; | |
color: #f7f5f7; | |
text-decoration: none; | |
text-shadow: 1px -0.5px 2px rgba(0,0,0,0.5); | |
} |
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
<header> | |
<a href="#"> | |
Parker J. Moore | |
</a> | |
</header> | |
<nav> | |
<p> | |
<a href="/parkermoore.de/">Home</a> | |
<a href="?page=portfolio.php">Portfolio</a> | |
<a href="?page=resume">Resume</a> | |
</p> | |
</nav> |
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
{"view":"split-vertical","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment