Difference between revisions of "Template:Toronto/css/test-stylesheet"

 
Line 1: Line 1:
.test {
+
.colormination {
 
     animation-name: color_change;
 
     animation-name: color_change;
 
     animation-duration: 3s;
 
     animation-duration: 3s;

Latest revision as of 14:15, 15 September 2016

.colormination {

   animation-name: color_change;
   animation-duration: 3s;
   animation-iteration-count: infinite;
   animation-direction: alternate;

}

@keyframes color_change {

   0% { color: blue; }
   25% { color: orange; }
   50% { color: yellow; }
   75% { color: black; }
   100% { color: red; }

}