Skip to content

Commit

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

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

.top-contain {
width: 200px;
height: 50px;
display: flex;
justify-content: center;
align-items: flex-start;
overflow: hidden;
}

.circle {
width: 200px;
height: 200px;
border-radius: 50%;
background-color: #328fc1;
}

.middle {
width: 200px;
height: 100px;
display: flex;
justify-content: center;
gap: 100px;
background-color: #0a6190;
}

.middle .bar {
width: 20px;
height: 100%;
background-color: #328fc1;
}

.bottom-contain {
width: 200px;
height: 50px;
display: flex;
justify-content: center;
align-items: flex-end;
overflow: hidden;
}
</style>

0 comments on commit e5c6c43

Please sign in to comment.