Created
July 7, 2010 07:47
-
-
Save phongjalvn/466438 to your computer and use it in GitHub Desktop.
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
/*Some style goodness*/ | |
.menu, .menu ul{ | |
background-color: #eee; | |
-moz-border-radius: 5px; /* FF1+ */ | |
-webkit-border-radius: 5px; /* Saf3+, Chrome */ | |
-khtml-border-radius: 5px; /* Konqueror */ | |
border-radius: 5px; /* Standard. IE9 */ | |
border:1px solid #ccc; | |
} | |
.menu li{ | |
border-right:1px solid #fff; | |
border-left:1px solid #ccc; | |
} | |
.menu li.first{ | |
border-left:none; | |
} | |
.menu li.last{ | |
border-right:none; | |
} | |
.menu a{ | |
color: #333; | |
text-shadow:0 1px 1px #fff; | |
font-weight: bold; | |
} | |
.menu a:hover, .menu .active a, .menu .active a:link{ | |
background-color: #fff; | |
color: #0099ff; | |
text-shadow:1px 1px 0 #e3e3e3; | |
} | |
.menu ul{ | |
border:1px solid #ccc; | |
border-bottom:none; | |
} | |
.menu ul li{ | |
border-left:none; | |
border-right:none; | |
border-top:1px solid #fff; | |
border-bottom:1px solid #ccc; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment