Created
September 9, 2013 13:52
-
-
Save danieldiekmeier/6495869 to your computer and use it in GitHub Desktop.
A Pen by Daniel.
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
<ul> | |
<li><a href="#">Lorem</a></li> | |
<li><a href="#">Ipsum</a></li> | |
<li><a href="#">Dolor</a></li> | |
<li><a href="#">Sit Amet</a></li> | |
</ul> |
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
@import "compass" | |
ul | |
list-style: none | |
font-family: 'Helvetica Neue' | |
font-weight: normal | |
width: 160px | |
&:hover | |
a | |
background-color: #f70 | |
-webkit-transition: background-color 600ms linear | |
li | |
a | |
display: block | |
background-color: #c30 | |
margin-top: 0px | |
padding: 10px | |
color: #fff | |
text-decoration: none | |
width: 160px | |
-webkit-transition: background-color 600ms linear | |
-webkit-transition-delay: 200ms | |
&:hover | |
background-color: #c30 | |
-webkit-transition: background-color 200ms linear | |
-webkit-transition-delay: 0s | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment