phantasma/app/static/css/partials/_titleanimation.scss

27 lines
718 B
SCSS
Raw Normal View History

: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 {
.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%;
}
}