Created
April 29, 2017 14:31
-
-
Save nkmathew/bd0d217511a2659bf86f52b7b83d2674 to your computer and use it in GitHub Desktop.
Restores Google search's links to the subtle light blue colour we're all used to
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
/** | |
* Restores Google search's links to the subtle light blue colour | |
* that's known everywhere as the default link colour | |
*/ | |
@-moz-document url-prefix("https://www.google.com/") { | |
a { | |
color: #1559b5 !important; | |
} | |
a:visited { | |
color: purple !important; | |
} | |
.hdtb-tl { | |
padding: 2px 8px !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment