Skip to content

Instantly share code, notes, and snippets.

@himynameisdave
Last active August 29, 2015 14:18
Show Gist options
  • Save himynameisdave/d2eb18df1310b4778b58 to your computer and use it in GitHub Desktop.
Save himynameisdave/d2eb18df1310b4778b58 to your computer and use it in GitHub Desktop.
Basic styles for the animated gradient button
<div class="button">
Wow! Such :hover!
</div>
.button {
background-size: 100%;
background-image: linear-gradient(#fff, #ccc);
border-radius: 0.45rem;
border: 1px solid #ddd;
cursor: pointer;
color: #333;
display: inline-block;
font-size: 1.25rem;
font-weight: 300;
padding: 1rem 1.5rem;
position: relative;
z-index: 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment