Skip to content

Instantly share code, notes, and snippets.

@himynameisdave
Last active August 29, 2015 14:18
Show Gist options
  • Save himynameisdave/87e6c8ca2bcd3d9e1dd6 to your computer and use it in GitHub Desktop.
Save himynameisdave/87e6c8ca2bcd3d9e1dd6 to your computer and use it in GitHub Desktop.
Basic styles plus the psudo element
.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;
&:before {
border-radius: inherit;
background-image: linear-gradient(#ccc, #fff);
content: '';
display: block;
height: 100%;
position: absolute;
top: 0; left: 0;
opacity: 0;
width: 100%;
z-index: -100;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment