Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
(CI) format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Zero to Mastery committed Aug 19, 2023
1 parent f49da6a commit 4b501fc
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 53 deletions.
16 changes: 8 additions & 8 deletions Art/IagoMota/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div></div>
<div></div>
<div></div>
<div></div>
</body>
</html>
</body>
</html>
90 changes: 45 additions & 45 deletions Art/IagoMota/style.css
Original file line number Diff line number Diff line change
@@ -1,58 +1,58 @@
@keyframes something {
0% {
background-color: #8000ff;
border-radius: 50px;
transform: rotate(72deg);
}

25% {
background-color: #b300ff;
border-radius: 15px;
transform: rotate(144deg);
}

50% {
background-color: #f200ff;
border-radius: 30px;
transform: rotate(216deg);
}

75% {
background-color: #ff00ff;
border-radius: 15px;
transform: rotate(288deg);
}

100% {
background-color: #8000ff;
border-radius: 50px;
transform: rotate(360deg);
}
0% {
background-color: #8000ff;
border-radius: 50px;
transform: rotate(72deg);
}

25% {
background-color: #b300ff;
border-radius: 15px;
transform: rotate(144deg);
}

50% {
background-color: #f200ff;
border-radius: 30px;
transform: rotate(216deg);
}

75% {
background-color: #ff00ff;
border-radius: 15px;
transform: rotate(288deg);
}

100% {
background-color: #8000ff;
border-radius: 50px;
transform: rotate(360deg);
}
}

div {
position: absolute;
height: 100px;
width: 100px;
background-color: black;
border-radius: 50px;
animation-name: something;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function:linear;
margin-top: 50px;
margin-left: 50px;
position: absolute;
height: 100px;
width: 100px;
background-color: black;
border-radius: 50px;
animation-name: something;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
margin-top: 50px;
margin-left: 50px;
}

div:first-child {
top: 50px;
top: 50px;
}

div:nth-child(2) {
left: 50px;
left: 50px;
}

div:nth-child(3) {
left: 50px;
top: 50px;
}
left: 50px;
top: 50px;
}

0 comments on commit 4b501fc

Please sign in to comment.