19 lines
216 B
SCSS
19 lines
216 B
SCSS
|
/* 2023 Aliberk Sandıkçı*/
|
|||
|
|
|||
|
@keyframes rain {
|
|||
|
0% {
|
|||
|
background-color: white;
|
|||
|
}
|
|||
|
|
|||
|
25% {
|
|||
|
background-color: red;
|
|||
|
}
|
|||
|
|
|||
|
50% {
|
|||
|
background-color: green;
|
|||
|
}
|
|||
|
|
|||
|
100% {
|
|||
|
background-color: yellow;
|
|||
|
}
|
|||
|
}
|