mirror of
https://github.com/minoplhy/crappy-jekyll.git
synced 2024-11-11 04:26:46 +00:00
14 lines
447 B
CSS
14 lines
447 B
CSS
|
|
.rainbow-text {
|
|
background-image: repeating-linear-gradient(45deg, violet, indigo, blue, green, yellow, orange, red, violet);
|
|
text-align: center;
|
|
background-size: 800% 800%;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
animation: rainbow 10s ease infinite;
|
|
}
|
|
@keyframes rainbow {
|
|
0%{background-position:0% 50%}
|
|
50%{background-position:100% 25%}
|
|
100%{background-position:0% 50%}
|
|
} |