-
-
Save onixus74/f04d6cde3bebad93c67ba7086155d524 to your computer and use it in GitHub Desktop.
Nicer Vimium link hint styling. What's Vimium? See http://vimium.github.io. This awesome yellow is courtesy of @mrmrs colors: http://clrs.cc.
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
/* To use this Vimium style in Chrome: | |
* | |
* 1. Go to Window > Extensions. | |
* | |
* 2. Find the Vimum extension and click the Options link. | |
* | |
* 3. Paste the code below in the box for "CSS for link hints". | |
* | |
*/ | |
div > .vimiumHintMarker { | |
padding: 2px 3px; | |
background-color: #feda31; | |
border: 0; | |
border-radius: 2px; | |
box-shadow: inset 0 -2px 0 #b39922; | |
background-image: none; | |
} | |
div > .vimiumHintMarker span { | |
font-size: 11px; | |
font-weight: bold; | |
text-shadow: none; | |
color: #4a400e; | |
} | |
div > .vimiumHintMarker > .matchingCharacter { | |
color: #dcbc2a; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment