-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding my artsyness to the project (#2920)
* adding my artsyness to the project * Update public folder --------- Co-authored-by: Laureline Paris <32878345+LaurelineP@users.noreply.github.com>
- Loading branch information
1 parent
5119018
commit 434bdba
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"githubHandle": "ChaniHighTech", | ||
"artName": "Liquid Loader" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); } | ||
} |