Difference between revisions of "User:Donald/common.css"

From Tycoon Gaming
m
Line 1: Line 1:
 
.animate {
 
.animate {
animation: textAnimate 5s linear infinite alternate;
+
background: -webkit-linear-gradient( 92deg, #95d7e3, #eb76ff );
 +
background-size:600vw 600vw;
 +
 +
-webkit-background-clip: text;
 +
-webkit-text-fill-color: transparent;
 +
animation: textAnimate 5s linear infinite alternate;
 
}
 
}
  

Revision as of 18:23, 14 April 2022

.animate {
	background: -webkit-linear-gradient( 92deg, #95d7e3, #eb76ff );
	background-size:600vw 600vw;
	
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: textAnimate 5s linear infinite alternate;
}

@keyframes textAnimate {
  from {
    filter: hue-rotate(0deg);
    background-position-x: 0%;
    
  }
  to {
    filter: hue-rotate(360deg);
    background-position-x: 600vw;
    
  }
}