Created
February 16, 2020 17:02
-
-
Save CyrusNuevoDia/b046f000e4ac691aad5198845788d55f to your computer and use it in GitHub Desktop.
Custom user style for https://github.com/babyman/quick-tabs-chrome-extension
This file contains 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
body, .qs_input, .noresult { | |
background: #FDF6E3; | |
font-family: "Operator Mono"; | |
} | |
body { | |
width: 640px; | |
padding: 4px; | |
} | |
.qs_input, .item { | |
height: unset; | |
border: none; | |
} | |
.qs_input { | |
font-size: 25px; | |
padding: 10px; | |
color: #0A0A32; | |
} | |
.qs_input::-webkit-input-placeholder { | |
color: transparent; | |
} | |
.item { | |
padding: 8px 12px; | |
} | |
.item:hover, .item:hover div.title, div.closed.item:hover div.title, | |
.item:hover div.url { | |
background-color: #EEDEB7; | |
} | |
.withfocus:hover, .withfocus:hover div.title, div.closed.withfocus:hover div.title, | |
.withfocus:hover div.url, | |
.withfocus, .withfocus div.title, div.closed.withfocus div.title, | |
.withfocus div.url { | |
background-color: #EEDEB7; | |
} | |
div.tabimage { | |
padding-right: 12px; | |
} | |
div.tabimage img { | |
padding: 0; | |
margin: 0; | |
border-radius: 0; | |
height: 36px; | |
width: 36px; | |
} | |
div.title, div.title b, .item:hover div.title, .item:hover div.title b, .with-focus div.title, .with-focus div.title b, .with-focus:hover div.title, .with-focus:hover div.title b { | |
font-size: 18px; | |
line-height: 1; | |
color: #323232 !important; | |
} | |
div.url, div.url b, .item:hover div.url, .item:hover div.url b, .with-focus div.url, .with-focus div.url b, .with-focus:hover div.url, .with-focus:hover div.url b { | |
font-size: 12px; | |
font-style: italic; | |
color: #646478 !important; | |
opacity: 0.8 !important; | |
} | |
div.separator.big { | |
display: none; | |
} | |
b, .withfocus b, .item:hover b { | |
font-weight: normal; | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment