Skip to content

Instantly share code, notes, and snippets.

@gibfahn
Last active May 29, 2019 14:52
Show Gist options
  • Select an option

  • Save gibfahn/3cf4e6a17c85ff67d29fea37ed31963d to your computer and use it in GitHub Desktop.

Select an option

Save gibfahn/3cf4e6a17c85ff67d29fea37ed31963d to your computer and use it in GitHub Desktop.

Revisions

  1. gibfahn revised this gist May 29, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion sVimcss.css
    Original file line number Diff line number Diff line change
    @@ -51,7 +51,7 @@
    padding: 0px;
    opacity: 0.9;
    border-style: outset;
    border-width: 5px;
    border-width: 2px;
    }

    .sVim-hint.sVim-hint-form {
  2. gibfahn revised this gist May 29, 2019. 1 changed file with 8 additions and 6 deletions.
    14 changes: 8 additions & 6 deletions sVimcss.css
    Original file line number Diff line number Diff line change
    @@ -43,13 +43,15 @@
    }

    .sVim-hint {
    background-color: #FFFF01;
    color: #000000;
    font-size: 10pt;
    background-color: DarkGrey;
    color: DarkGoldenRod;
    font-size: 15pt;
    font-family: monospace;
    line-height: 10pt;
    line-height: 15pt;
    padding: 0px;
    opacity: 0.7;
    opacity: 0.9;
    border-style: outset;
    border-width: 5px;
    }

    .sVim-hint.sVim-hint-form {
    @@ -63,4 +65,4 @@

    .sVim-hint.sVim-hint-hidden {
    visibility: hidden;
    }
    }
  3. gibfahn revised this gist May 29, 2019. No changes.
  4. gibfahn renamed this gist May 29, 2019. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  5. gibfahn created this gist May 29, 2019.
    66 changes: 66 additions & 0 deletions sVimcss
    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: 10pt;
    font-family: monospace;
    line-height: 10pt;
    padding: 0px;
    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;
    }