So I've implemented a hover effect for my links, but strangely the whole page is being affected.
Here is my current style:
a:hover, :visited, :active, :hover
{
color:#fff;
text-shadow: -1px 1px 8px #ffc, 1px -1px 8px #fff;
text-decoration: none;
color: #009933;
text-shadow: none;
-webkit-transition: 500ms linear 0s;
-moz-transition: 500ms linear 0s;
transition: 500ms linear 0s;
outline: 0 none;
}
Also, do you find my code readable so far? Would you understand what I was trying to achieve if you had to continue working on this website? Any feedback would be appreciated as I aim to improve.