You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
body {
|
|
background-image: none!important;
|
|
animation-name: color;
|
|
animation-duration: 8s;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
@keyframes color {
|
|
0% {background-color: red;}
|
|
20% {background-color: yellow;}
|
|
40% {background-color: green;}
|
|
60% {background-color: blue;}
|
|
80% {background-color: purple;}
|
|
100% {background-color: red;}
|
|
}
|