Created
November 18, 2012 02:02
-
-
Save UncleBill/4102807 to your computer and use it in GitHub Desktop.
css for vimium hits
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
div > .vimiumHintMarker { | |
/* linkhint boxes */ | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF785), | |
color-stop(100%,#FFC542)); | |
border: 1px solid #E3BE23; | |
opacity:0.8; | |
-webkit-transform: display 0.05s; | |
-webkit-animation: vimium_hit_marker 0.1s ease-in; | |
} | |
div > .vimiumHintMarker span { | |
/* linkhint text */ | |
color: black; | |
font-weight: bold; | |
font-size: 12px; | |
} | |
div > .vimiumHintMarker > .matchingCharacter { | |
} | |
@-webkit-keyframes vimium_hit_marker { | |
0% { opacity: 0.5 } | |
100% { opacity: 0.7 } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment