Skip to content

Commit 434bdba

Browse files
adding my artsyness to the project (#2920)
* adding my artsyness to the project * Update public folder --------- Co-authored-by: Laureline Paris <[email protected]>
1 parent 5119018 commit 434bdba

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="he">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="styles.css">
7+
</head>
8+
<body>
9+
<div class="loader">
10+
<div class="dot"></div>
11+
<div class="dot"></div>
12+
<div class="dot"></div>
13+
</div>
14+
</body>
15+
</html>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"githubHandle": "ChaniHighTech",
3+
"artName": "Liquid Loader"
4+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
body {
2+
display: flex;
3+
justify-content: center;
4+
align-items: center;
5+
height: 100vh;
6+
background: #222;
7+
}
8+
9+
.loader {
10+
display: flex;
11+
gap: 10px;
12+
}
13+
14+
.dot {
15+
width: 20px;
16+
height: 20px;
17+
background: #ff4500;
18+
border-radius: 50%;
19+
animation: liquid 1.5s infinite ease-in-out;
20+
}
21+
22+
.dot:nth-child(2) {
23+
background: #ffa500;
24+
animation-delay: 0.2s;
25+
}
26+
27+
.dot:nth-child(3) {
28+
background: #32cd32;
29+
animation-delay: 0.4s;
30+
}
31+
32+
@keyframes liquid {
33+
0%, 100% { transform: translateY(0); }
34+
50% { transform: translateY(-15px) scale(1.2); }
35+
}

0 commit comments

Comments
 (0)