Created
April 29, 2018 19:50
-
-
Save coramuirgen/a0560ce8e3efb7d2b99ea7d5a3674d2a to your computer and use it in GitHub Desktop.
VimVixen css styles
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
.vimvixen-console-frame { | |
margin: 0; | |
padding: 2px; | |
bottom: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
position: fixed; | |
z-index: 2147483647; | |
border: none; | |
background-color: unset; | |
pointer-events: none; | |
font-size: 16px; | |
} | |
.vimvixen-hint { | |
background-color: rgb(255,242,233); | |
border: 1px solid rgb(255,179,125); | |
padding: 0 4px; | |
font-weight: 400; | |
font-family: monospace; | |
text-transform: lowercase; | |
position: absolute; | |
z-index: 2147483647; | |
font-size: 18px; | |
color: #2a0971; | |
} | |
.vimvixen-console { | |
bottom: 0; | |
margin: 0; | |
padding: 0; | |
} | |
.vimvixen-console-command-wrapper { | |
border-top: 1px solid rgba(255,216,236,.98); | |
font-family: "iA Writer Duospace"; | |
font-size: 16px; | |
} | |
.vimvixen-console-completion { | |
background-color: white; | |
font-style: normal; | |
font-family: monospace; | |
font-size: 16px; | |
line-height: 20px; | |
} | |
.vimvixen-console-completion-title { | |
background-color: rgb(110,30,255) !important; | |
color: whitesmoke !important; | |
font-weight: bold; | |
margin: 0; | |
padding: 0; | |
} | |
.vimvixen-console-completion-item { | |
padding-left: 1.5rem; | |
background-position: 0 center; | |
background-size: contain; | |
background-repeat: no-repeat; | |
white-space: nowrap; | |
} | |
.vimvixen-console-completion-item.vimvixen-completion-selected { | |
background-color: #fbf5c8; | |
} | |
.vimvixen-console-completion-item-caption { | |
display: inline-block; | |
width: 40%; | |
text-overflow: ellipsis; | |
overflow: hidden; | |
} | |
.vimvixen-console-completion-item-url { | |
display: inline-block; | |
color: green; | |
width: 60%; | |
text-overflow: ellipsis; | |
overflow: hidden; | |
} | |
.vimvixen-console-message { | |
font-style: normal; | |
font-family: monospace; | |
font-size: 16px; | |
line-height: 20px; | |
border-top: 1px solid rgba(255,216,236,.98); | |
} | |
.vimvixen-console-error { | |
background-color: rgb(255,0,0); | |
font-weight: bold; | |
color: white; | |
} | |
.vimvixen-console-info { | |
background-color: white; | |
font-weight: normal; | |
color: green; | |
} | |
.vimvixen-console-command { | |
background-color: white; | |
display: flex; | |
} | |
.vimvixen-console-command-prompt:before { | |
font-style: normal; | |
font-family: monospace; | |
font-size: 16px; | |
line-height: 20px; | |
} | |
.vimvixen-console-command-prompt.prompt-command:before { | |
content: ':'; | |
} | |
.vimvixen-console-command-prompt.prompt-find:before { | |
content: '/'; | |
} | |
.vimvixen-console-command-input { | |
border: none; | |
flex-grow: 1; | |
font-style: normal; | |
font-family: monospace; | |
font-size: 16px; | |
line-height: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment