Skip to content

Instantly share code, notes, and snippets.

@jshawl
Created September 30, 2014 15:49
Show Gist options
  • Select an option

  • Save jshawl/c9a61ac061fe7a7ed758 to your computer and use it in GitHub Desktop.

Select an option

Save jshawl/c9a61ac061fe7a7ed758 to your computer and use it in GitHub Desktop.
a precess production
li{
display:inline-block;
a{
display:block;
padding:1em;
text-decoration:none;
&:hover{
text-decoration:underline;
}
}
}
$myColor: green;
a{
color:$myColor;
}
li{
list-style:none;
border:1px solid $myColor;
}
h3{
color:$myColor;
}
li {
display: inline-block;
}
li a {
display: block;
padding: 1em;
text-decoration: none;
}
li a:hover {
text-decoration: underline;
}
a {
color: green;
}
li {
list-style: none;
border: 1px solid green;
}
h3 {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment