icon fade color
by Symphony
HTML
<img src="http://i.imgur.com/hQ6D7W3.png" alt="twitter">
CSS
img {
background: #888;
width: 50px;
height: 50px;
transition: all .6s;
}
img:hover {
background: #f15564;
}
by Symphony
<img src="http://i.imgur.com/hQ6D7W3.png" alt="twitter">
img {
background: #888;
width: 50px;
height: 50px;
transition: all .6s;
}
img:hover {
background: #f15564;
}