/*Made With Love CSS3*/
.love {
display: inline-block;
position: relative;
top: .1.0em;
font-size: 0.9em;
color: #e74c3c;
-webkit-transform: scale(.9);
-moz-transform: scale(.9);
transform: scale(.9);
-webkit-animation: love .5s infinite linear alternate-reverse;
-moz-animation: love .5s infinite linear alternate-reverse;
animation: love .5s infinite linear alternate-reverse;
}
@-webkit-keyframes love {
to {-webkit-transform: scale(1.4);}
}
@-moz-keyframes love {
to {-moz-transform: scale(1.4);}
}
@keyframes love {
to {transform: scale(1.2);}
}
/*Made With Love CSS3*/