Created
September 14, 2017 05:50
-
-
Save none23/551c9fc8fb6f5d020387083d3fb16467 to your computer and use it in GitHub Desktop.
cvim css
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
{ | |
background: #111; | |
color: #ccc; | |
text-shadow: none; | |
} | |
::-webkit-scrollbar | |
{ | |
width: 10px !important; | |
} | |
::-webkit-scrollbar-track | |
{ | |
background-color: #444 !important; | |
} | |
::-webkit-scrollbar-thumb | |
{ | |
background: #111 !important; | |
-webkit-transition: all 0.2s ease-out !important; | |
transition: all 0.2s ease-out !important; | |
} | |
::-webkit-scrollbar-thumb:active | |
{ | |
background: #f60 !important; | |
} | |
::-webkit-selection | |
{ | |
background: #f60 !important; | |
color: #000 !important; | |
} | |
#cVim-link-container, .cVim-link-hint, #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, .cVim-completion-item .cVim-right, #cVim-hud, #cVim-status-bar { | |
font-family: Inconsolata, Fira Mono, Terminus, Ubuntu Mono; | |
font-size: 12px; | |
} | |
#cVim-link-container { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 2147483647; | |
pointer-events: none; | |
} | |
.cVim-link-hint { | |
position: absolute; | |
display: inline-block; | |
padding: 2px; | |
border: 1px solid #111; | |
font-size: 12px; | |
font-weight: 600; | |
text-align: center; | |
text-transform: uppercase; | |
background-color: #de5e1e; | |
color: #111; | |
filter: none !important; | |
box-shadow: none; | |
} | |
.cVim-link-hint_match { | |
text-transform: uppercase; | |
color: #999; | |
} | |
#cVim-command-bar, | |
#cVim-command-bar#cVim-command-bar { | |
position: fixed; | |
left: 0; | |
width: 100%; | |
height: 20px; | |
z-index: 2147483646; | |
display: none; | |
background-color: #111; | |
} | |
#cVim-command-bar-mode { | |
width: 10px; | |
height: 100%; | |
display: inline-block; | |
padding: 2px; | |
color: #ccc; | |
} | |
#cVim-command-bar-input { | |
position: absolute; | |
top: 0; | |
left: 10px; | |
right: 0; | |
color: #de5e1e; | |
background-color: #111 !important; | |
} | |
#cVim-command-bar-search-results { | |
position: fixed; | |
width: 100%; | |
overflow: hidden; | |
z-index: 2147483647; | |
left: 0; | |
box-shadow: none !important; | |
background-color: #111; | |
} | |
.cVim-completion-item, | |
.cVim-completion-item .cVim-full, | |
.cVim-completion-item .cVim-left, | |
.cVim-completion-item .cVim-right { | |
padding: 2px 12px; | |
display: inline-block; | |
box-sizing: border-box; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
} | |
.cVim-completion-item:nth-child(even) { | |
background-color: #141414; | |
} | |
.cVim-completion-item { | |
width: 100%; left: 0; | |
background-color: #090909; | |
color: #bebebe; | |
} | |
.cVim-completion-item .cVim-left { | |
color: #999; | |
width: 45%; | |
} | |
.cVim-completion-item .cVim-right { | |
color: #de5e1e; | |
width: 45%; | |
} | |
.cVim-completion-item[active] | |
,.cVim-completion-item[active] .cVim-full | |
,.cVim-completion-item[active] .cVim-left | |
,.cVim-completion-item[active] .cVim-right | |
,.cVim-completion-item:focus | |
,.cVim-completion-item:focus .cVim-full | |
,.cVim-completion-item:focus .cVim-left | |
,.cVim-completion-item:focus .cVim-right { | |
background-color: #de5e1e; | |
color: #111; | |
} | |
#cVim-hud { | |
background-color: rgba(23,23,23,0.7); | |
position: fixed; | |
transition: none; | |
z-index: 24724289; | |
} | |
#cVim-hud span { | |
padding: 2px; | |
padding-left: 4px; | |
padding-right: 4px; | |
color: #aaa; | |
font-size: 10px; | |
} | |
#cVim-frames-outline { | |
position: fixed; | |
width: 100%; | |
height: 100%; | |
top: 0; | |
left: 0; | |
z-index: 9999999999; | |
box-sizing: border-box; | |
border: 1px solid #de5e1e; | |
} | |
/* GitLab */ | |
body.ui_indigo.ui_indigo.ui_indigo { | |
filter: invert(1); | |
} | |
body.ui_indigo.ui_indigo.ui_indigo * { | |
background: #eee; | |
color: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment