.angry-animate{
-webkit-animation:change-color 4s ease 0s infinite normal;
-moz-animation:change-color 4s ease 0s infinite normal;
-ms-animation:change-color 4s ease 0s infinite normal;
animation:change-color 4s ease 0s infinite normal;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 3px 3px 12px 2px rgba(0,0,0,0.37);
box-shadow: 3px 3px 12px 2px rgba(0,0,0,0.37);
padding:10px;
}
@-webkit-keyframes change-color {
0%{ color:green; }
100%{ color:red; }
}
@keyframes change-color {
0%{ color:green; }
100%{ color:red; }
} Spam