Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,72 @@ <h2 class="mt-0 mb-10">Yearly Targets</h2>
</div>
</div>
<!-- End Targets Widget -->
<!-- Start Week Over Week Money Widget -->
<div class="wow-money p-20 bg-white rad-10">
<h2 class="mt-0 mb-10">Week Over Week Money</h2>
<p class="mt-0 mb-20 c-grey fs-15">Weekly Totals vs Yearly Target ($20,000)</p>
<div class="yearly-target mb-20">
<span class="fs-14 c-grey">Yearly Target</span>
<span class="d-block mt-5 mb-10 fw-bold">$20,000</span>
</div>
<div class="weeks d-flex gap-20" style="justify-content: space-between;">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: Fix conflicting spacing properties

Suggested change
<div class="weeks d-flex gap-20" style="justify-content: space-between;">
<div class="weeks d-flex" style="justify-content: space-between;">

<div class="week-col txt-c">
<span class="fs-14 c-grey">Week 1</span>
<span class="d-block mt-5 mb-10 fw-bold">$1,200</span>
<div class="progress p-relative" style="height: 60px; width: 20px; margin: 0 auto;">
<span class="bg-blue" style="display: block; width: 100%; height: 6%; position: absolute; bottom: 0;">
<span class="bg-blue" style="position: absolute; left: 50%; transform: translateX(-50%); bottom: 100%; font-size: 12px;">6%</span>
</span>
</div>
</div>
<div class="week-col txt-c">
<span class="fs-14 c-grey">Week 2</span>
<span class="d-block mt-5 mb-10 fw-bold">$1,500</span>
<div class="progress p-relative" style="height: 60px; width: 20px; margin: 0 auto;">
<span class="bg-blue" style="display: block; width: 100%; height: 7.5%; position: absolute; bottom: 0;">
<span class="bg-blue" style="position: absolute; left: 50%; transform: translateX(-50%); bottom: 100%; font-size: 12px;">7.5%</span>
</span>
</div>
</div>
<div class="week-col txt-c">
<span class="fs-14 c-grey">Week 3</span>
<span class="d-block mt-5 mb-10 fw-bold">$1,800</span>
<div class="progress p-relative" style="height: 60px; width: 20px; margin: 0 auto;">
<span class="bg-blue" style="display: block; width: 100%; height: 9%; position: absolute; bottom: 0;">
<span class="bg-blue" style="position: absolute; left: 50%; transform: translateX(-50%); bottom: 100%; font-size: 12px;">9%</span>
</span>
</div>
</div>
<div class="week-col txt-c">
<span class="fs-14 c-grey">Week 4</span>
<span class="d-block mt-5 mb-10 fw-bold">$2,000</span>
<div class="progress p-relative" style="height: 60px; width: 20px; margin: 0 auto;">
<span class="bg-blue" style="display: block; width: 100%; height: 10%; position: absolute; bottom: 0;">
<span class="bg-blue" style="position: absolute; left: 50%; transform: translateX(-50%); bottom: 100%; font-size: 12px;">10%</span>
</span>
</div>
</div>
<div class="week-col txt-c">
<span class="fs-14 c-grey">Week 5</span>
<span class="d-block mt-5 mb-10 fw-bold">$1,600</span>
<div class="progress p-relative" style="height: 60px; width: 20px; margin: 0 auto;">
<span class="bg-blue" style="display: block; width: 100%; height: 8%; position: absolute; bottom: 0;">
<span class="bg-blue" style="position: absolute; left: 50%; transform: translateX(-50%); bottom: 100%; font-size: 12px;">8%</span>
</span>
</div>
</div>
<div class="week-col txt-c">
<span class="fs-14 c-grey">Week 6</span>
<span class="d-block mt-5 mb-10 fw-bold">$1,900</span>
<div class="progress p-relative" style="height: 60px; width: 20px; margin: 0 auto;">
<span class="bg-blue" style="display: block; width: 100%; height: 9.5%; position: absolute; bottom: 0;">
<span class="bg-blue" style="position: absolute; left: 50%; transform: translateX(-50%); bottom: 100%; font-size: 12px;">9.5%</span>
</span>
</div>
</div>
</div>
</div>
<!-- End Week Over Week Money Widget -->
<!-- Start Ticket Widget -->
<div class="tickets p-20 bg-white rad-10">
<h2 class="mt-0 mb-10">Tickets Statistics</h2>
Expand Down