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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
First-Website/color/color.css

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;}
}