Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@UncleBill
Created November 18, 2012 02:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UncleBill/4102807 to your computer and use it in GitHub Desktop.
Save UncleBill/4102807 to your computer and use it in GitHub Desktop.
css for vimium hits
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