Skip to content

Instantly share code, notes, and snippets.

@mythril
Created December 1, 2012 18:18
Show Gist options
  • Save mythril/4183693 to your computer and use it in GitHub Desktop.
Save mythril/4183693 to your computer and use it in GitHub Desktop.
A CodePen by Anonymous.
<ul>
<a href=""><li>Body Treatments</li></a>
<a href=""><li>Make Up</li></a>
<a href=""><li>Skincare</li></a>
<a href=""><li>Hand & Feet Treats</li></a>
</ul>
ul {
list-style:none;
margin: 0;
padding:0;
}
ul li {
margin-bottom: 8px;
color:#999;
}
ul li:hover {
color: #FFF;
background-color: #f6634c;
width: 200px;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment