FontAwesome + css transition
Font Awesome iconset implementation. + on hover CSS color trasition.
by John Doe
HTML
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<a class="fa fa-jsfiddle" href="#"></a>
CSS
html, body{
width:100%;
height:100%;
text-align:center;
margin-top:20px;
}
.fa{
font-size: 41px;
text-decoration:none;
color:#C0C0C0;
-webkit-transition: color 1s; /* For Safari 3.1 to 6.0 */
transition: color 1s;
}
.fa:hover{
color:#4679BD;
}