Created
February 4, 2014 01:59
-
-
Save TimWolla/8796194 to your computer and use it in GitHub Desktop.
Stackoverflow question 21541494 - Coffeescript add button on hover
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
| /** | |
| * Stackoverflow question 21541494 - Coffeescript add button on hover | |
| */ | |
| .prf_cvr_edt { | |
| opacity: 0; | |
| transition: opacity .5s linear; | |
| } | |
| .prf_cover:hover + .prf_cvr_edt { | |
| opacity: 1; | |
| } |
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
| <header class="shop-banner"> | |
| <img src="http://i.imgur.com/5jSh4fI.jpg" style="height: 250px" class="prf_cover"> | |
| <a class="btn btn-custom prf_cvr_edt">Edit Cover</a> | |
| </header> |
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
| //alert('Hello world!'); |
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
| {"view":"split","fontsize":"120","seethrough":"1","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment