Last active
January 6, 2018 11:13
-
-
Save jon-grangien/a03487b49adef4dcd16d to your computer and use it in GitHub Desktop.
Vimium chrome extension css overrides
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
# Insert your preferred key mappings here. | |
map e scrollPageUp |
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
div > .vimiumHintMarker { | |
/* linkhint boxes */ | |
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00264d), | |
color-stop(100%,#004999)); | |
border: 1px solid #000c1a; | |
} | |
div > .vimiumHintMarker span { | |
/* linkhint text */ | |
color: #e5f2ff; | |
font-weight: bold; | |
font-size: 12px; | |
} | |
div.internalVimiumHintMarker > .matchingCharacter { | |
color:#33cccc; | |
} | |
div.internalVimiumHintMarker span { | |
text-shadow: rgba(0, 0, 0, 0.8) 0px 1px 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment