Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Last active March 29, 2017 18:50
Show Gist options
  • Save jennimckinnon/d618cd84c95a439f41631c5d6ff222f9 to your computer and use it in GitHub Desktop.
Save jennimckinnon/d618cd84c95a439f41631c5d6ff222f9 to your computer and use it in GitHub Desktop.
After changing some settings in the Upfront editor for the Fixer starter theme, this code adds an animation. Fixer: https://premium.wpmudev.org/project/fixer/
a.upfront_cta {
position:relative;
}
a.upfront_cta:after {
content:'';
width:100%;
height:0px;
background-color:#5ebf6b;
position:absolute;
display:block;
z-index:-1;
left:0px;
top:0;
transition:height .1s linear;
}
a.upfront_cta:hover:after {
height:100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment