Created
June 19, 2014 11:17
-
-
Save hitsujixgit/d10fd727665d9c02447f to your computer and use it in GitHub Desktop.
カスタムメニューを設置する - index.phpをカスタマイズする#8
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
ul#main-nav { | |
clear: both; | |
margin: 0; | |
padding: 0; | |
height: 35px; | |
background-color: #777; | |
border-radius: 3px; | |
overflow: hidden; | |
} | |
ul#main-nav li { | |
list-style-type: none; | |
float: left; | |
} | |
ul#main-nav li a { | |
font-size: 1.1em; | |
display: block; | |
width: 150px; | |
line-height: 35px; | |
color: #fff; | |
text-align: center; | |
margin: 0; | |
border-right: groove 1px #aaa; | |
} | |
ul#main-nav li a:hover { | |
background-color: #555; | |
color: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment