CSS Borda Animada
selector{
--animated-color-1: #c705fd;
--animated-color-2: #2716ff;
--border-width: 140px;
}
selector{
height: var(--c-height);
}
selector:before{
content: "";
position: absolute;
inset: -140px var(--border-width);
background: linear-gradient(315deg, var(--animated-color-1), var(--animated-color-2));
width: auto;
height: auto;
transition: all .3s;
animation: animate 4s linear infinite;
}
@keyframes animate{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}