Skip to content

Instantly share code, notes, and snippets.

@joesteinkamp
Created August 19, 2012 16:51
Show Gist options
  • Save joesteinkamp/3396210 to your computer and use it in GitHub Desktop.
Save joesteinkamp/3396210 to your computer and use it in GitHub Desktop.
Android Holo CSS Menu List
<ul>
<li><a href="">Item One</a></li>
<li><a href="">Item Two</a></li>
<li><a href="">Item Three</a></li>
<li><a href="">Item Four</a></li>
<li><a href="">Item Five</a></li>
</ul>​
ul {
list-style-type: none;
padding: 0 10px;
}
a {
display: block;
padding: 9px 10px 5px 10px;
border-bottom: 1px solid #D7D7D7;
-webkit-box-sizing: border-box;
box-sizing: border-box;
text-decoration: none;
font-family: Helvetica, Arial, sans-serif;
font-size: 19px;
color: #272727;
}
a:hover {
background: #199fce;
color: #fff;
}​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment