Skip to content

Commit

Permalink
(CI) format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Zero to Mastery committed Oct 23, 2023
1 parent 0a21038 commit fb66c69
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 96 deletions.
20 changes: 10 additions & 10 deletions Art/Aryan741x/index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DAY 2 Challenge</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="menu no-animation">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</body>
</html>
168 changes: 84 additions & 84 deletions Art/Aryan741x/style.css
Original file line number Diff line number Diff line change
@@ -1,84 +1,84 @@
*{
margin:0;
padding:0;
box-sizing: border-box;
background-color: #3faf82
}
body{
min-height:100vh;
display:flex;
justify-content: center;
align-items: center;
}
.menu{
position: relative;
display: flex;
flex-direction:column;
row-gap:16px;
cursor: pointer;
}
.menu div{
width:100px;
height:10px;
background-color: white;
box-shadow:0 4px 20px #00000030;
border-radius: 2px;
transition:all 0.3s;
}
.menu.active div:nth-child(2){
transform:scale(0);
opacity:0;
}
.menu.active div:nth-child(1){
animation:bar1Anim 0.3s ease-in-out forwards;
}
@keyframes bar1Anim{
50%{
transform:translateY(24px);
}
100%{
transform:translateY(24px) rotateZ(45deg);
}
}
.menu.active div:nth-child(3){
animation:bar2Anim 0.3s ease-in-out forwards;
}
@keyframes bar2Anim{
50%{
transform:translateY(-24px);
}
100%{
transform:translateY(-24px) rotateZ(135deg);
}
}
.menu div:nth-child(1){
animation: bar1revAnim 0.3s ease-in-out;
}
@keyframes bar1revAnim{
0%{
transform:translateY(24px) rotateZ(45deg);
}
50%{
transform:translateY(24px) rotateZ(0deg);
}
100%{
transform: translateY(0px);
}
}
.menu div:nth-child(3){
animation: bar3revAnim 0.3s ease-in-out;
}
@keyframes bar3revAnim{
0%{
transform:translateY(-24px) rotateZ(135deg);
}
50%{
transform:translateY(-24px) rotateZ(0deg);
}
100%{
transform: translateY(0px);
}
}
.menu.no-animation div{
animation: none;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #3faf82;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.menu {
position: relative;
display: flex;
flex-direction: column;
row-gap: 16px;
cursor: pointer;
}
.menu div {
width: 100px;
height: 10px;
background-color: white;
box-shadow: 0 4px 20px #00000030;
border-radius: 2px;
transition: all 0.3s;
}
.menu.active div:nth-child(2) {
transform: scale(0);
opacity: 0;
}
.menu.active div:nth-child(1) {
animation: bar1Anim 0.3s ease-in-out forwards;
}
@keyframes bar1Anim {
50% {
transform: translateY(24px);
}
100% {
transform: translateY(24px) rotateZ(45deg);
}
}
.menu.active div:nth-child(3) {
animation: bar2Anim 0.3s ease-in-out forwards;
}
@keyframes bar2Anim {
50% {
transform: translateY(-24px);
}
100% {
transform: translateY(-24px) rotateZ(135deg);
}
}
.menu div:nth-child(1) {
animation: bar1revAnim 0.3s ease-in-out;
}
@keyframes bar1revAnim {
0% {
transform: translateY(24px) rotateZ(45deg);
}
50% {
transform: translateY(24px) rotateZ(0deg);
}
100% {
transform: translateY(0px);
}
}
.menu div:nth-child(3) {
animation: bar3revAnim 0.3s ease-in-out;
}
@keyframes bar3revAnim {
0% {
transform: translateY(-24px) rotateZ(135deg);
}
50% {
transform: translateY(-24px) rotateZ(0deg);
}
100% {
transform: translateY(0px);
}
}
.menu.no-animation div {
animation: none;
}
4 changes: 2 additions & 2 deletions include.js
Original file line number Diff line number Diff line change
Expand Up @@ -2234,8 +2234,8 @@ let cards = [
imageLink: './Art/Aryan741x/animation-1.png',
author: 'Aryan741x',
githubLink: 'https://github.com/Aryan741x'
},
{
},
{
artName: 'Rotating Box',
pageLink: './Art/Dhairya-Mehra/animation.html',
imageLink: './Art/Dhairya-Mehra/animation.gif',
Expand Down

0 comments on commit fb66c69

Please sign in to comment.