Last active
February 21, 2017 19:54
-
-
Save artdevjs/4e1cd4ffb9a7f4171fb35e93eb53be86 to your computer and use it in GitHub Desktop.
Custom styles for sVim
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
| /* | |
| _ | |
| ___/\ /(_)_ __ ___ ___ ___ ___ | |
| / __\ \ / / | '_ ` _ \ / __/ __/ __| | |
| \__ \\ V /| | | | | | | (__\__ \__ \ | |
| |___/ \_/ |_|_| |_| |_|\___|___/___/ | |
| Author: Artem Medvedev | |
| repo : https://gist.github.com/artdevjs/4e1cd4ffb9a7f4171fb35e93eb53be86 | |
| */ | |
| #sVim-command { | |
| -webkit-animation: fadein .2s !important; | |
| -webkit-appearance: none !important; | |
| background-color: rgba(0, 0, 0, 0.80) !important; | |
| background-position: none !important; | |
| background-repeat: none !important; | |
| border-radius: 0 !important; | |
| border: 0 !important; | |
| box-shadow: none !important; | |
| box-sizing: content-box !important; | |
| color: #FFFFFF !important; | |
| display: none; | |
| font-family: "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: 2px 0 0 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 { | |
| background-color: #000; | |
| color: #fff; | |
| border-radius: 4px; | |
| font-family: 'Courier New', Courier, monospace !important; | |
| font-size: 14px; | |
| line-height: 14px; | |
| padding: 2px; | |
| opacity: .85; | |
| /*letter-spacing: 2px;*/ | |
| transform: rotate(16deg); | |
| } | |
| .sVim-hint.sVim-hint-form { | |
| background-color: #FFFF01; | |
| color: #000000 !important; | |
| } | |
| .sVim-hint.sVim-hint-focused { | |
| opacity: 1; | |
| color: #45ec54; | |
| font-weight: bold; | |
| } | |
| .sVim-hint.sVim-hint-hidden { | |
| visibility: hidden; | |
| } | |
| @-webkit-keyframes fadein { | |
| from { | |
| opacity: 0; | |
| } | |
| to { | |
| opacity: 1; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment