Skip to content

Commit

Permalink
Add gecko-compatible transitions
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNull committed Jul 7, 2014
1 parent c1dfa37 commit c33d7dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ a:link, a:visited {
text-shadow: 0px 0px 10px #fff;
text-decoration: none;
transition: all .5s linear 0;
-moz-transition: all .5s linear 0;
-webkit-transition: all .5s linear 0;
}

Expand All @@ -42,6 +43,7 @@ a:hover {
-moz-user-select: none;
color:red;
text-decoration: none;
transition: all .5s linear 0
transition: all .5s linear 0;
-moz-transition: all .5s linear 0;
-webkit-transition: all .5s linear 0;
}

0 comments on commit c33d7dc

Please sign in to comment.