Skip to content

Commit

Permalink
Jul 30
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavg916 committed Jul 30, 2024
1 parent a2d84d6 commit 0279c0f
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ <h3>Daily Challenges Solution</h3>
<li><a href="./pages/Jul/Jul27.html">Jul 27, 2024</a></li>
<li><a href="./pages/Jul/Jul28.html">Jul 28, 2024</a></li>
<li><a href="./pages/Jul/Jul29.html">Jul 29, 2024</a></li>
<li><a href="./pages/Jul/Jul30.html">Jul 30, 2024</a></li>
</ul>
</details>
</main>
Expand Down
49 changes: 49 additions & 0 deletions pages/Jul/Jul30.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<div class="container">
<div class="wrapper">
<div class="bar"></div>
<div class="semi">
<div class="circle"></div>
</div>
</div>
</div>
<style>
.container {
margin: -8px;
width: 400px;
height: 300px;
background-color: #4f77ff;
overflow: hidden;
}

.wrapper {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transform: translateY(-3.5%);
}

.bar {
width: 40px;
height: 120px;
background-color: #eff8fe;
transform: rotate(45deg) translate(106%, 2%);
}

.semi {
width: 200px;
height: 100px;
display: flex;
justify-content: center;
align-items: flex-end;
overflow: hidden;
}

.circle {
width: 200px;
height: 200px;
border-radius: 50%;
background-color: #eff8fe;
}
</style>

0 comments on commit 0279c0f

Please sign in to comment.