- Май
- 548
- 98
Только чтение
Приветствую, ранее создавал такую тему но только для регистрации пользователя пикамонов дал код
Как сделать чтобы такая же анимированная кнопка была на вход?
@keyframes animreg {
0%, 100% {
box-shadow: 0 0 5px rgba(220, 38, 38, 0.4),
0 0 10px rgba(220, 38, 38, 0.3),
0 0 15px rgba(220, 38, 38, 0.2);
background-color: rgba(220, 38, 38, 0.1);
}
50% {
box-shadow: 0 0 10px rgba(220, 38, 38, 0.8),
0 0 20px rgba(220, 38, 38, 0.6),
0 0 30px rgba(220, 38, 38, 0.4);
background-color: rgba(220, 38, 38, 0.2);
}
}
.p-navgroup-link--register {
animation: animreg 2s ease-in-out infinite;
border-radius: 4px;
transition: all 0.3s ease;
}
.p-navgroup-link--register:hover {
animation: animreg 1s ease-in-out infinite;
background-color: rgba(220, 38, 38, 0.25) !important;
}
0%, 100% {
box-shadow: 0 0 5px rgba(220, 38, 38, 0.4),
0 0 10px rgba(220, 38, 38, 0.3),
0 0 15px rgba(220, 38, 38, 0.2);
background-color: rgba(220, 38, 38, 0.1);
}
50% {
box-shadow: 0 0 10px rgba(220, 38, 38, 0.8),
0 0 20px rgba(220, 38, 38, 0.6),
0 0 30px rgba(220, 38, 38, 0.4);
background-color: rgba(220, 38, 38, 0.2);
}
}
.p-navgroup-link--register {
animation: animreg 2s ease-in-out infinite;
border-radius: 4px;
transition: all 0.3s ease;
}
.p-navgroup-link--register:hover {
animation: animreg 1s ease-in-out infinite;
background-color: rgba(220, 38, 38, 0.25) !important;
}
Как сделать чтобы такая же анимированная кнопка была на вход?