8,960
edits
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
@keyframes gradient-text { | |||
0% { | |||
background-position: 0% 0%; | |||
} | |||
100% { | |||
background-position: 100% 100%; | |||
} | |||
} | |||
.gradient-text { | |||
font-size: 2em; /* Размер текста, можно изменить по вашему усмотрению */ | |||
background: linear-gradient(45deg, #48B4DB, #EC8BC3, #EC8B00); | |||
background-size: 300% 300%; | |||
-webkit-background-clip: text; | |||
-webkit-text-fill-color: transparent; | |||
animation: gradient-text 5s ease infinite; | |||
} | |||
.twentyonewikilogo { | .twentyonewikilogo { | ||
font-family: 'MyCustomFont1'; | font-family: 'MyCustomFont1'; | ||