Created
October 21, 2014 01:44
-
-
Save singerxt/0eb380b39eb9d03d3017 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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