Skip to content

Commit

Permalink
add pink speedy (#2887)
Browse files Browse the repository at this point in the history
Co-authored-by: jacob-dowdy <[email protected]>
Co-authored-by: Laureline Paris <[email protected]>
  • Loading branch information
3 people authored Nov 12, 2024
1 parent 428e70f commit e89b3c5
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Art/jaydeecodez-pink_speedy/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pink Speedy</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="main-circle">
</div>
</body>
</html>
4 changes: 4 additions & 0 deletions Art/jaydeecodez-pink_speedy/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"artName": "pink_speedy",
"githubHandle": "jaydeecodez"
}
23 changes: 23 additions & 0 deletions Art/jaydeecodez-pink_speedy/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
body {
background-color: #89CFF0;
}

#main-circle {
background-color: pink;
height: 400px;
width: 600px;
border-radius: 180;
margin-top: -20px;
border: black dashed 5px;
animation:
1s linear 0s infinite alternate pinky2;
}

@keyframes pinky2 {
from {
transform: translateY(0);
}
to {
transform: translateX(100vw);
}
}

0 comments on commit e89b3c5

Please sign in to comment.