8,960
edits
No edit summary |
No edit summary |
||
| Line 5: | Line 5: | ||
position: relative; | position: relative; | ||
background-color: #fff; /* Цвет фона контейнера */ | background-color: #fff; /* Цвет фона контейнера */ | ||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
} | } | ||
. | .gradient-text { | ||
font-size: 4rem; /* Размер текста */ | |||
font-weight: bold; | |||
background: linear-gradient(45deg, lightcoral 25%, lightblue 25%, lightblue 50%, lightcoral 50%, lightcoral 75%, lightblue 75%); | background: linear-gradient(45deg, lightcoral 25%, lightblue 25%, lightblue 50%, lightcoral 50%, lightcoral 75%, lightblue 75%); | ||
background-size: 150% 150%; | background-size: 150% 150%; | ||
animation: waveAnimation | background-clip: text; | ||
-webkit-background-clip: text; | |||
color: transparent; | |||
animation: waveAnimation 2s infinite linear; /* Увеличенная скорость анимации */ | |||
} | } | ||