Skip to content

Instantly share code, notes, and snippets.

@everettcaleb
Created August 14, 2014 18:28
Show Gist options
  • Save everettcaleb/944f0a73bd31ebcddeda to your computer and use it in GitHub Desktop.
Save everettcaleb/944f0a73bd31ebcddeda to your computer and use it in GitHub Desktop.
A SASS snippet to do something similar to the oval fade effect in the Google Material Design docs
$color-header: #fff
$color-alttext: #fff
a
background-color: $color-header
border-radius: 40px
color: $color-alttext
transition: color ease 0.75s, background-color ease 0.75s, border-radius ease 1s
&:hover
background-color: darken($color-header, 5%)
border-radius: 0
color: darken($color-alttext, 20%)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment