Last active
April 23, 2019 23:07
-
-
Save joshvasquez/8b4819dc4d18bec7892474a2a538456d to your computer and use it in GitHub Desktop.
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
| @-webkit-keyframes fadein { | |
| from { | |
| opacity: 0; | |
| } | |
| to { | |
| opacity: 1; | |
| } | |
| } | |
| #sVim-command { | |
| -webkit-animation: fadein .2s !important; | |
| -webkit-appearance: none !important; | |
| background-color: rgba(0, 0, 0, 0.90) !important; | |
| background-position: none !important; | |
| background-repeat: none !important; | |
| border-radius: 10 !important; | |
| border: 0 !important; | |
| box-shadow: none !important; | |
| box-sizing: content-box !important; | |
| color: #FFFFFF !important; | |
| display: none; | |
| font-family: "DejaVu Sans","Helvetica Neue" !important; | |
| font-size: 13px !important; | |
| font-style: normal !important; | |
| left: 0 !important; | |
| letter-spacing: normal !important; | |
| line-height: 1 !important; | |
| margin: 0 !important; | |
| min-height: 0 !important; | |
| outline-style: none !important; | |
| outline: 0 !important; | |
| padding: 10px !important; | |
| position: fixed !important; | |
| right: 0 !important; | |
| text-align: start !important; | |
| text-indent: 0px !important; | |
| text-shadow: none !important; | |
| text-transform: none !important; | |
| vertical-align: none !important; | |
| width: 100% !important; | |
| word-spacing: normal !important; | |
| z-index: 2147483647 !important; | |
| } | |
| .sVim-hint { | |
| color: #000000; | |
| position: absolute; | |
| display: block; | |
| top: -1px; | |
| left: -1px; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| font-size: 17px; | |
| padding: 1px 3px 0px 3px; | |
| background: linear-gradient(to bottom, #FFF785 0%,#FFC542 100%); | |
| border: solid 1px #C38A22; | |
| border-radius: 3px; | |
| box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3); | |
| font-weight: bold; | |
| } | |
| .sVim-hint.sVim-hint-form { | |
| background-color: #3EFEFF; | |
| } | |
| .sVim-hint.sVim-hint-focused { | |
| opacity: 1; | |
| font-weight: bold; | |
| } | |
| .sVim-hint.sVim-hint-hidden { | |
| visibility: hidden; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment