Skip to content

Instantly share code, notes, and snippets.

@nath1as
Created September 7, 2021 06:02
Show Gist options
  • Save nath1as/af783a492ecd0ad8b7cf84f127bffaba to your computer and use it in GitHub Desktop.
Save nath1as/af783a492ecd0ad8b7cf84f127bffaba to your computer and use it in GitHub Desktop.
vimium css
/* F labels */
div > .vimiumHintMarker {
background: #1c1c1c;
font-size: 12px !important;
border: 0.2em solid #875faf;
border-radius: 0.34em;
box-shadow: 0em 0.1em 0.6em 0.1em rgba(0, 0, 0, 0.4);
padding: 3px;
}
div > .vimiumHintMarker span {
font-family: "Hack";
display: inline-block;
color: #d4bebe;
font-size: inherit;
text-shadow: none;
}
/* omnibar */
div > .vimiumHintMarker > .matchingCharacter {
color: #875faf;
}
div.vimiumHUD {
background: #1c1c1c;
border: 1px solid #875faf;
}
div.vimiumHUD .vimiumHUDSearchArea {
background: #1c1c1c;
}
div.vimiumHUD .hud-find {
background: #1c1c1c;
border: none;
color: #d4bebe;
}
div.vimiumHUD span#hud-find-input {
color: #d4bebe;
}
div.vimiumHUD .vimiumHUDSearchAreaInner {
color: #875faf;
}
#vomnibar {
font-family: "Hack";
background-color: #1c1c1c;
border: none;
border-radius: 2px;
}
#vomnibar input {
color: #d4bebe;
font: -moz-window;
font-family: "Hack";
font-size: 20px;
font-weight: bold;
height: 34px;
margin-bottom: 0;
padding: 4px;
background-color: #1c1c1c;
border: 2px solid #875faf;
width: 100%;
outline: none;
box-sizing: border-box;
}
#vomnibar .vomnibarSearchArea {
display: block;
padding: 10px;
background-color: #875faf;
border-radius: 6px 6px 2px 2px;
border-bottom: 0px solid #bd93f9;
}
#vomnibar ul {
background-color: #1c1c1c;
border-radius: 0 0 4px 4px;
list-style: none;
padding-top: 0;
padding-bottom: 0;
margin-block-start: 2px;
margin-block-end: 0px;
}
#vomnibar li {
border-bottom: 1px solid #875faf;
line-height: 1.1em;
padding: 7px 10px;
color: #d4bebe;
position: relative;
display: list-item;
margin: auto;
font-family: "Hack";
font-size: 16px;
}
#vomnibar li .vomnibarBottomHalf {
font-size: 15px;
margin-top: 3px;
padding: 2px 0;
}
#vomnibar li .vomnibarSource {
color: #bd93f9;
font-weight: bold;
margin-right: 4px;
}
#vomnibar li .vomnibarRelevancy {
position: absolute;
right: 0;
top: 0;
padding: 5px;
background-color: #1c1c1c;
color: #d4bebe;
width: 100px;
overflow: hidden;
}
#vomnibar li .vomnibarUrl {
white-space: nowrap;
color: #20ad80;
}
#vomnibar li .vomnibarMatch {
font-weight: bold;
color: #4f97d7;
}
#vomnibar li em,
#vomnibar li .vomnibarTitle {
color: #d4bebe;
margin-left: 4px;
font-weight: normal;
}
#vomnibar li em {
font-style: italic;
}
#vomnibar li em .vomnibarMatch,
#vomnibar li .vomnibarTitle .vomnibarMatch {
color: #4f97d7;
}
#vomnibar li.vomnibarSelected {
background-color: #000;
font-weight: normal;
}
#vomnibarInput::selection {
background-color: #333;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment