Code: Select all
noscript {
display:none !important;
}
*|*:-moz-any-link {
text-decoration:underline;
}
*|*:-moz-any-link:active {
color:#EE0000;
}
*|*:visited {
color:#551A8B;
}
*|*:link {
color:#0000EE;
}
Gregor
Code: Select all
noscript {
display:none !important;
}
*|*:-moz-any-link {
text-decoration:underline;
}
*|*:-moz-any-link:active {
color:#EE0000;
}
*|*:visited {
color:#551A8B;
}
*|*:link {
color:#0000EE;
}
Code: Select all
a {
color: #679EBC;
text-decoration: none;
text-align: left;
}
a:hover {
color: #3A6B85;
}
a:active {
color: #3A6B85;
}
a:visited {
color: #679EBC;
}
Code: Select all
div#main a, div#rightcontent a, div#main a:visited, div#rightcontent a:visited, div#main a:hover, div#rightcontent a:hover{
color: #000;
}
Code: Select all
/*default link styles, set all links to have underline and bluish color
a,
a:link, a:active, a:visited {
text-decoration: underline;
/*
css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element
*/
background-color: inherit;
color: #00FF00;
}
*/
/*
a:visited {
text-decoration: underline;
background-color: inherit;
color: #18507C; /* a different color can be used for visited links */
}
*/
/* remove underline on hover and change color */
a:hover {
text-decoration: none;
}