Created
September 19, 2014 18:35
-
-
Save danvk/f935c892832a831c8006 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
nav.navigation { | |
font-size: 12px; | |
position: absolute; | |
top: 0; left: 0; right: 0; | |
background: #fefefe; | |
border-bottom: 1px solid rgba(0, 0, 0, 0.2); | |
} | |
nav.navigation ul { | |
margin: 0; | |
padding: 0; | |
display: inline; | |
} | |
nav.navigation li { | |
display: inline-block; | |
} | |
nav.navigation a { | |
color: black; | |
text-decoration: none; | |
padding: 2px 11px; | |
} | |
nav.navigation li:hover a.unstyled { | |
visibility: hidden; | |
} | |
nav.navigation li:hover a.spacer { | |
visibility: visible; | |
} | |
nav.navigation .active { | |
font-weight: bold; | |
} | |
nav.navigation .spacer { | |
visibility: hidden; | |
font-weight: bold; | |
position: absolute; | |
margin-top: -2px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment