MaketTahta/assets/scss/_animation.scss

19 lines
216 B
SCSS
Raw Permalink Normal View History

2023-10-26 01:26:55 +03:00
/* 2023 Aliberk Sandıı*/
@keyframes rain {
0% {
background-color: white;
}
25% {
background-color: red;
}
50% {
background-color: green;
}
100% {
background-color: yellow;
}
}