-
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.
* art added by Amrutha * deleted additional files * requested changes editted * requested changes editted -2 * Update meta.json --------- Co-authored-by: Laureline Paris <32878345+LaurelineP@users.noreply.github.com>
- Loading branch information
1 parent
140e5bd
commit b65dd07
Showing
3 changed files
with
66 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,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>turning circle</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="box"> | ||
<div class="coin"></div> | ||
</div> | ||
<div class="box"> | ||
<div class="coin"></div> | ||
</div> | ||
<div class="box"> | ||
<div class="coin"></div> | ||
</div><div class="box"> | ||
<div class="coin"></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 @@ | ||
{ | ||
"artName": "Loading Colours", | ||
"githubHandle": "AMRUTHA-BYSANI" | ||
} |
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,37 @@ | ||
body { | ||
background-color: #000000; | ||
} | ||
.box{ | ||
perspective: 120px; | ||
min-height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.container{ | ||
display: flex; | ||
flex-direction: row; | ||
gap: 10px; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100hv; | ||
} | ||
|
||
.coin { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
background: linear-gradient(135deg, #FF5F6D, #FFC371, #36D1DC, #5B86E5, #A1FFCE); | ||
; | ||
animation: twist 2s ease-in-out alternate infinite; | ||
} | ||
|
||
@keyframes twist { | ||
|
||
to{ | ||
transform: rotateX(360deg) scale(0.5); | ||
} | ||
|
||
} | ||
|