Files
2018-06-19 18:58:11 +03:00

14 lines
258 B
CSS

.button {
background-color: green;
}
.button:highlighted {
animation-name: highlight;
animation-duration: 2s;
animation-fill-mode: forwards;
}
@keyframes highlight {
from { background-color: yellow; }
to { background-color: red; }
}