common link color

This commit is contained in:
Roland Gruber 2010-10-13 17:45:13 +00:00
parent 28210eb37b
commit f06344fb46
1 changed files with 13 additions and 8 deletions

View File

@ -41,23 +41,28 @@ body {
/* links */
a {
color:blue;
text-decoration:none;
color: blue;
text-decoration: none;
}
a:link {
color: blue;
text-decoration: none;
}
a:visited {
color:blue;
text-decoration:none;
color: blue;
text-decoration: none;
}
a:hover {
color:red;
text-decoration:none;
color: red;
text-decoration: none;
}
a:active {
color:red;
text-decoration:none;
color: red;
text-decoration: none;
}
a img {