Created
January 2, 2010 03:13
-
-
Save fleeting/267363 to your computer and use it in GitHub Desktop.
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
/* STYLES ARTICLE LINKS ON HOVER */ | |
.content a:link, .content a:visited, .content a:active { | |
color: #888; | |
text-decoration: none; | |
border-bottom: 0; | |
} | |
article:hover a:link, article:hover a:visited, article:hover a:active { | |
color: #323232; | |
text-decoration: none; | |
border-bottom: 1px dashed #323232; | |
} | |
article:hover a:hover, article a:hover { | |
border-bottom: 1px solid #323232; | |
} | |
/* STYLES H1 TAGS IN CONTENT */ | |
.content h1 a:link, .content h1 a:visited, .content h1 a:active { | |
color: #; | |
text-decoration: none; | |
border-bottom: 1px solid #; | |
} | |
.content:hover h1 a:hover { | |
color: #fff; | |
border-bottom: 0; | |
background: #323232; | |
} | |
/* STYLES ARTICLE FOOTER LINKS ON HOVER */ | |
article footer a:link, article footer a:visited, article footer a:active { | |
color: #f4f4f4; | |
text-decoration: none; | |
border-bottom: 0; | |
padding: 7px 3px; | |
} | |
article:hover footer a:link, article:hover footer a:visited, article:hover footer a:active { | |
color: #fff; | |
text-decoration: none; | |
border-bottom: 0; | |
} | |
article:hover footer a:hover, article footer a:hover { | |
border-bottom: 0; | |
color: #323232; | |
background: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment