Files
2019-09-19 15:40:31 +03:00

14 lines
168 B
CSS

@keyframes test {
from {
background-color: red;
}
50% {
background-color: yellow;
}
to {
background-color: green;
}
}