Skip to content

Commit

Permalink
adding my artsyness to the project (#2920)
Browse files Browse the repository at this point in the history
* adding my artsyness to the project

* Update public folder

---------

Co-authored-by: Laureline Paris <32878345+LaurelineP@users.noreply.github.com>
  • Loading branch information
ChaniHighTech and LaurelineP authored Feb 28, 2025
1 parent 5119018 commit 434bdba
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Art/ChaniHighTech-LiquidLoader/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="loader">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</body>
</html>
4 changes: 4 additions & 0 deletions Art/ChaniHighTech-LiquidLoader/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"githubHandle": "ChaniHighTech",
"artName": "Liquid Loader"
}
35 changes: 35 additions & 0 deletions Art/ChaniHighTech-LiquidLoader/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #222;
}

.loader {
display: flex;
gap: 10px;
}

.dot {
width: 20px;
height: 20px;
background: #ff4500;
border-radius: 50%;
animation: liquid 1.5s infinite ease-in-out;
}

.dot:nth-child(2) {
background: #ffa500;
animation-delay: 0.2s;
}

.dot:nth-child(3) {
background: #32cd32;
animation-delay: 0.4s;
}

@keyframes liquid {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px) scale(1.2); }
}

0 comments on commit 434bdba

Please sign in to comment.