Skip to content

Instantly share code, notes, and snippets.

@singerxt
Created October 21, 2014 01:44
Show Gist options
  • Save singerxt/0eb380b39eb9d03d3017 to your computer and use it in GitHub Desktop.
Save singerxt/0eb380b39eb9d03d3017 to your computer and use it in GitHub Desktop.
.button-watch.background--light {
&:before {
background: transparent;
color: transparent;
}
&:hover {
background: inherit;
color: inherit;
&:before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: #fff;
opacity: 0.1;
border-radius: 25px;
}
}
}
.button-watch.background--dark {
&:before {
background: transparent;
color: transparent;
}
&:hover {
background: inherit;
color: inherit;
&:before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: #000;
opacity: 0.1;
border-radius: 25px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment