Created
September 27, 2013 15:36
-
-
Save zenman/6730567 to your computer and use it in GitHub Desktop.
Find Empty Links
This file contains 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
// Make links that are linking to the current page pulsate red | |
// so you can find and remove them. Really annoying but effective. | |
// I do all my development in webkit so this only works with that. | |
a[href="#"] { | |
background-color: red; | |
-webkit-animation: pulsate 1s ease-out; | |
-webkit-animation-iteration-count: infinite; | |
} | |
@-webkit-keyframes pulsate { | |
0% {background-color: #fff;} | |
50% {background-color: red;} | |
100% {background-color: #fff;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment