Last active
December 22, 2015 20:09
-
-
Save lenagroeger/6524918 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
| .annotation { | |
| background: #cecbc3 ; | |
| border-radius: 3px; | |
| padding: 0px 3px; | |
| transition: all 0.10s ease-in-out; | |
| -webkit-transition: all 0.10s ease-in-out; | |
| -moz-transition: all 0.10s ease-in-out; | |
| cursor:pointer; | |
| } | |
| .annotation.tweet { | |
| background: url("http://propublica.s3.amazonaws.com/projects/projectx/tweet_icon.png") no-repeat top left #e8eef1; | |
| padding-left: 24px; | |
| background-size: 13px; | |
| background-position: 5px 2px; | |
| } | |
| .annotation.tweet:hover { | |
| background: url("http://propublica.s3.amazonaws.com/projects/projectx/tweet_icon_hover.png") no-repeat top left #d7dee1; | |
| padding-left: 24px; | |
| background-size: 13px; | |
| background-position: 5px 2px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment