Skip to content

Instantly share code, notes, and snippets.

@cmwinters
Created August 6, 2014 22:30
Show Gist options
  • Save cmwinters/98f8ff2a2a05b16e870c to your computer and use it in GitHub Desktop.
Save cmwinters/98f8ff2a2a05b16e870c to your computer and use it in GitHub Desktop.
$btn-bg: #008CBA;
$btn-text-color: white;
.btn {
padding: 10px 20px;
font-weight: bold;
transition: all 300ms ease;
color: rgba($btn-text-color, 0.8);
background: $btn-bg;
border: 1px solid scale-color($btn-bg, $lightness: -20%);
text-shadow: rgba(black, 0.4) 0 1px 2px;
&:hover {
color: rgba($btn-text-color, 1);
background: scale-color($btn-bg, $lightness: -10%);
border-color: scale-color($btn-bg, $lightness: -40%);
text-shadow: rgba(red, 0.7) 0 1px 2px;
}
&:active {
color: rgba($btn-text-color, 1);
background: scale-color($btn-bg, $lightness: -20%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment