-
-
Save qrg/9234844e184a2059d5f4 to your computer and use it in GitHub Desktop.
chrome quick tabs custm style
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
| body { | |
| width: 600px; | |
| font-family: inherit; | |
| } | |
| div.title { | |
| color: #444; | |
| } | |
| div.url { | |
| color: #aaa; | |
| } | |
| .item, | |
| .item div.title, | |
| div.closed.item div.title, | |
| .item div.url { | |
| transition: color ease .1s, background-color ease .1s; | |
| } | |
| .item:hover, | |
| .item:hover div.title, | |
| div.closed.item:hover div.title, | |
| .item:hover div.url { | |
| background-color: #eee; | |
| color: #000; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment