Skip to content

Instantly share code, notes, and snippets.

@dioxide
Last active February 25, 2019 06:03
Show Gist options
  • Save dioxide/5c08fafe7280a6f022c8404ecc364a0f to your computer and use it in GitHub Desktop.
Save dioxide/5c08fafe7280a6f022c8404ecc364a0f to your computer and use it in GitHub Desktop.

Revisions

  1. dioxide revised this gist Feb 25, 2019. No changes.
  2. dioxide revised this gist Feb 7, 2019. 1 changed file with 15 additions and 7 deletions.
    22 changes: 15 additions & 7 deletions sVim_css
    Original file line number Diff line number Diff line change
    @@ -43,13 +43,21 @@
    }

    .sVim-hint {
    background-color: #FFFF01;
    color: #000000;
    font-size: 14pt;
    font-family: monospace;
    line-height: 14pt;
    padding: 3px;
    opacity: 0.7;
    font-family: Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial;
    -webkit-font-smoothing: antialiased !important;
    color: #302505 !important;
    background-color: #ffd76e !important;
    border-radius: 2px !important;
    padding: 2px !important;
    font-size: 10pt !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    border: 1px solid #ad810c;
    display: inline-block !important;
    vertical-align: middle !important;
    text-align: center !important;
    box-shadow: 2px 2px 1px rgba(0,0,0,0.25) !important;
    opacity:0.8;
    }

    .sVim-hint.sVim-hint-form {
  3. dioxide created this gist Feb 5, 2019.
    66 changes: 66 additions & 0 deletions sVim_css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,66 @@
    @-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: "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: #FFFF01;
    color: #000000;
    font-size: 14pt;
    font-family: monospace;
    line-height: 14pt;
    padding: 3px;
    opacity: 0.7;
    }

    .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;
    }