Skip to content

Instantly share code, notes, and snippets.

@roykolak
Last active August 29, 2015 14:04
Show Gist options
  • Save roykolak/4b9cb3acbe4648af35ba to your computer and use it in GitHub Desktop.
Save roykolak/4b9cb3acbe4648af35ba to your computer and use it in GitHub Desktop.
&.offwhite-btn {
background-color: $offwhite;
color: #000;
&:hover {
background-color: #YOYOYO;
color: #HEYHEY;
}
}
can also do shit like this:
&.offwhite-btn {
background-color: $offwhite;
color: #000;
&:hover {
background-color: darken($offwhite, 10%);
color: lighten(#000, 50%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment