Skip to content

Commit

Permalink
Jul 24
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavg916 committed Jul 24, 2024
1 parent f345c26 commit dd5b8f4
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ <h3>Daily Challenges Solution</h3>
<li><a href="./pages/Jul/Jul21.html">Jul 21, 2024</a></li>
<li><a href="./pages/Jul/Jul22.html">Jul 22, 2024</a></li>
<li><a href="./pages/Jul/Jul23.html">Jul 23, 2024</a></li>
<li><a href="./pages/Jul/Jul24.html">Jul 24, 2024</a></li>
</ul>
</details>
</main>
Expand Down
44 changes: 44 additions & 0 deletions pages/Jul/Jul24.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<div class="container">
<div class="wrapper">
<div class="top-circle"></div>
<div class="rect"></div>
<div class="bottom-circle"></div>
</div>
</div>
<style>
.container {
margin: -8px;
width: 400px;
height: 300px;
background-color: #edaf38;
overflow: hidden;
}

.wrapper {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.top-circle,
.bottom-circle {
width: 280px;
height: 40px;
background-color: #7f7f24;
border-radius: 50%;
transform: translateY(50%);
}

.rect {
width: 280px;
height: 121px;
background-color: #ffffcd;
}

.bottom-circle {
background-color: #ffffcd;
transform: translateY(-50%);
}
</style>

0 comments on commit dd5b8f4

Please sign in to comment.