2021-10-22 09:32:26 +00:00
|
|
|
:root {
|
|
|
|
--animated-title-color-1: #6666ff;
|
|
|
|
--animated-title-color-2: #0099ff;
|
|
|
|
--animated-title-color-3: #ffff00;
|
|
|
|
--animated-title-color-4: #ff3399;
|
|
|
|
}
|
2021-10-21 16:10:13 +00:00
|
|
|
@keyframes animated_title_animation {
|
|
|
|
0%,100% {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
background-position: 100% 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.animated-title {
|
2021-10-27 16:47:05 +00:00
|
|
|
.text, .text-about {
|
2021-11-12 10:21:00 +00:00
|
|
|
//background-image: linear-gradient(to right, var(--animated-title-color-1), var(--animated-title-color-2) , var(--animated-title-color-3), var(--animated-title-color-4));
|
|
|
|
//-webkit-background-clip: text;
|
|
|
|
//background-clip: text;
|
|
|
|
//color: transparent;
|
|
|
|
//animation: animated_title_animation 60s ease-in-out infinite;
|
2021-10-21 16:10:13 +00:00
|
|
|
background-size: 400% 100%;
|
|
|
|
}
|
|
|
|
}
|