Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
resolved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
l-white committed Aug 9, 2023
2 parents 8ca4665 + 4fa93c9 commit 7c3a711
Show file tree
Hide file tree
Showing 4 changed files with 6,159 additions and 193 deletions.
16 changes: 16 additions & 0 deletions Art/rainbow-circle/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animation</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<h1>Rainbow Circle</h1>
<div class="carrot"></div>
</body>

</html>
44 changes: 44 additions & 0 deletions Art/rainbow-circle/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.carrot {
width: 30px;
height: 20px;
background: red;
border-radius: 40%;
position: relative;
animation-name: loony;
animation-duration: 4s;
animation-delay: 2s;
}

@keyframes loony {
0% {
background-color: red;
left: 0px;
top: 0px;
}
25% {
background-color: yellow;
left: 100px;
top: 0px;
}
50% {
background-color: greenyellow;
left: 100px;
top: 100px;
}
75% {
background-color: rgb(10, 210, 232);
left: 0px;
top: 100px;
}
100% {
background-color: rgb(245, 35, 245);
left: 0px;
top: 0px;
}
}

h1 {
font-family: cursive;
font-size: large;
color: mediumspringgreen;
}
Binary file added Art/rainbow-circle/traunce.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7c3a711

Please sign in to comment.