Skip to content

Commit

Permalink
Jul 29
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavg916 committed Jul 29, 2024
1 parent e5c6c43 commit a2d84d6
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ <h3>Daily Challenges Solution</h3>
<li><a href="./pages/Jul/Jul26.html">Jul 26, 2024</a></li>
<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>
</ul>
</details>
</main>
Expand Down
66 changes: 66 additions & 0 deletions pages/Jul/Jul29.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<div class="container">
<div class="wrapper">
<div class="upper">
<div class="semi">
<div class="circle"></div>
</div>
<div class="bar"></div>
</div>
<div class="lower"></div>
</div>
</div>
<style>
.container {
margin: -8px;
width: 400px;
height: 300px;
background-color: #b53733;
overflow: hidden;
}

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

.upper {
width: 160px;
height: 67%;
background-color: #ea7457;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
border-radius: 0 0 25% 25%;
}

.upper .semi {
width: 60px;
height: 30px;
display: flex;
justify-content: center;
align-items: flex-start;
}

.upper .semi .circle {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #b53733;
}

.upper .bar {
width: 60px;
height: 70px;
background-color: #b53733;
}

.lower {
width: 60px;
height: 33%;
background-color: #ea7457;
}
</style>

0 comments on commit a2d84d6

Please sign in to comment.