Skip to content

Instantly share code, notes, and snippets.

@axtl
Last active June 27, 2019 20:54
Show Gist options
  • Save axtl/77f2be3b6e10accbab8413eaa01cfff2 to your computer and use it in GitHub Desktop.
Save axtl/77f2be3b6e10accbab8413eaa01cfff2 to your computer and use it in GitHub Desktop.
sVim
@-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.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: "FuraCode Nerd Font", monospace;
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: #A07555;
color: black;
font-size: 10pt;
text-shadow: 0 1pt 0 rgba(255, 255, 255, 0.6);
font-family: "FuraCode Nerd Font", monospace;
line-height: 10pt;
opacity: 0.7;
position: absolute;
display: block;
top: -1pt;
left: -1pt;
white-space: nowrap;
overflow: hidden;
padding: 1pt 3pt 0 3pt;
background: linear-gradient(to bottom, #FFF785 0%, #FFC542 100%);
border: solid 1pt #C38A22;
border-radius: 2pt;
box-shadow: 0 3pt 3pt 0 rgba(0, 0, 0, 0.3);
font-weight: bold;
}
.sVim-hint.sVim-hint-form {
background-color: #A07555;
font-weight: bold;
color: black;
font-size: 11px;
}
.sVim-hint.sVim-hint-focused {
opacity: 1;
font-weight: bold;
color: black !important;
background-color: #A07555;
}
.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