Created
October 25, 2012 23:17
-
-
Save Ricardo-Diaz/3956079 to your computer and use it in GitHub Desktop.
CSS: Reset all colors and Link Color
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
Reset all colors and change link color | |
This resets all text and background colors so you’re back at square one with black text. Then it changes the color and style of links to distinguish from regular text and make them apparent that they’re links – change the color and styling to whatever you want. | |
* { | |
color: black !important; | |
background-color: white !important; | |
background-image: none !important; | |
} | |
a:link { | |
font-weight: bold; | |
text-decoration: underline; | |
color: #06c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment