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 22, 2023
1 parent 185c9c0 commit adee667
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 33 deletions.
30 changes: 13 additions & 17 deletions Art/K-Wiczling/complex.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,42 +5,38 @@
border-radius: 44%;
animation: box 15s infinite;
}
.box{
.box {
animation: rot 2s infinite;
background-color: black;
width: 300px;
height: 300px;
margin: 0 auto;
margin-top: 30vh;

}
#inner1{
#inner1 {
background-color: red;

}
#inner2{
#inner2 {
background-color: greenyellow;

}
#inner3{
#inner3 {
background-color: goldenrod;

}
@keyframes box {
0% {
background-color: red;
}
0% {
background-color: red;
}

100% {
background-color: green;
}
}
@keyframes rot {
100% {
background-color: green;
}
}
@keyframes rot {
0%,
100% {
transform: rotate(360deg);
}
50% {
transform: rotate(0deg);
}
}
}
16 changes: 5 additions & 11 deletions Art/K-Wiczling/complex.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
<link rel="stylesheet" href="complex.css" />

<div class="animation-wrapper">
<div class="box">
<div class="inner" id="inner1">

</div>
<div class="inner" id="inner2">

</div>
<div class="inner" id="inner3">

</div>
</div>
<div class="box">
<div class="inner" id="inner1"></div>
<div class="inner" id="inner2"></div>
<div class="inner" id="inner3"></div>
</div>
</div>
2 changes: 1 addition & 1 deletion Art/K-Wiczling/square.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
100% {
transform: scale(1);
}

50% {
transform: scale(1.5);
}
Expand Down
5 changes: 1 addition & 4 deletions Art/K-Wiczling/square.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<link rel="stylesheet" href="square.css" />

<div class="animation-wrapper">

<div class="box1">
</div>

<div class="box1"></div>
</div>

0 comments on commit adee667

Please sign in to comment.