Skip to content

Commit

Permalink
Jul 27
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavg916 committed Jul 27, 2024
1 parent 1dc343c commit 8704613
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Sources of Truth

- [ ] Improve accuracy in Jul 23 Challenge
- [ ] View source code button with automation script using JavaScript to display the source of the challenge
- [ ] Add feature of Heatmap on the landing page

---

Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ <h3>Daily Challenges Solution</h3>
<li><a href="./pages/Jul/Jul24.html">Jul 24, 2024</a></li>
<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>
</ul>
</details>
</main>
Expand Down
48 changes: 48 additions & 0 deletions pages/Jul/Jul27.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<div class="container">
<div class="wrapper">
<div class="semi-circle">
<div class="triangle"></div>
<div class="triangle"></div>
</div>
<div class="bar"></div>
</div>
</div>
<style>
.container {
margin: -8px;
width: 400px;
height: 300px;
background-color: #f48b26;
overflow: hidden;
}

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

.semi-circle {
width: 130px;
height: 102px;
border-radius: 0 0 50% 50%;
background-color: #feff58;
display: flex;
}

.triangle {
width: 0px;
height: 0px;
border-left: 32px solid transparent;
border-right: 32px solid transparent;
border-top: 32px solid #f48b26;
}

.bar {
width: 20px;
height: 150px;
background-color: #feff58;
}
</style>

0 comments on commit 8704613

Please sign in to comment.