Skip to content

Instantly share code, notes, and snippets.

@qgadrian
Created July 30, 2019 16:43
Show Gist options
  • Save qgadrian/079fc09b8211ebf22a16252f0ca86b5c to your computer and use it in GitHub Desktop.
Save qgadrian/079fc09b8211ebf22a16252f0ca86b5c to your computer and use it in GitHub Desktop.
Svim css style
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#sVim-command {
-webkit-animation: fadein .2s !important;
-webkit-appearance: 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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", !important;
font-size: 14px !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 {
font-size: 10pt;
font-weight: bold;
padding: 0px 2px 0px 2px;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF785), color-stop(100%,#FFC542));
color: #000;
border: solid 1px #C38A22;
border-radius: 3px;
box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
width: auto;
}
.sVim-hint.sVim-hint-form {
background-color: #3EFEFF;
}
.sVim-hint.sVim-hint-focused {
opacity: 0.9;
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment