Last active
May 6, 2020 08:04
-
-
Save tuxedocat/1025a33356ae2a3991a2506c06678a55 to your computer and use it in GitHub Desktop.
Quick Tabs Custom CSS Nord http://github.com/babyman/quick-tabs-chrome-extension https://www.nordtheme.com/
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 { | |
background: #2e3440; | |
color: #4c566a; | |
} | |
div.title { | |
color: #d8dee9; | |
} | |
.qs_input { | |
background: #3b4252; | |
color: #d8dee9; | |
} | |
div.separator.big { | |
color: #d8dee9; | |
} | |
.item:hover, | |
.item:hover div.title, | |
div.closed.item:hover div.title, | |
.item:hover div.url { | |
background-color: #41505e; | |
color: #88c0d0; | |
} | |
.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: #4c566a; | |
color: #81a1c1; | |
} | |
img { | |
padding-top: 4px; | |
background-color: #2e3440; | |
} | |
div.closed div.title { | |
color: #4c566a; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment