Last active
October 29, 2015 21:39
-
-
Save aclissold/2154a4f6242ae2bbebd0 to your computer and use it in GitHub Desktop.
Custom Vimium hint marker CSS
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 { | |
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#eee)); | |
border: 1px solid #ddd; | |
text-shadow: none !important; | |
box-shadow: none; | |
} | |
div > .vimiumHintMarker span { | |
color: #a00; | |
font-weight: bold; | |
font-size: 12px; | |
font-family: 'SF Compact Text'; | |
} | |
div > .vimiumHintMarker > .matchingCharacter { | |
color: #a77; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment