Created
August 6, 2014 22:30
-
-
Save cmwinters/98f8ff2a2a05b16e870c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$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