Skip to content

Commit

Permalink
Merge pull request #73 from KimVianney/ft-add-remand-status
Browse files Browse the repository at this point in the history
Add remanded status to represent missing persons sent to jail
  • Loading branch information
kaybrian authored Jul 23, 2024
2 parents b63ffc5 + 0daa6b3 commit 1d7ccea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ <h1>Kidnappings & Missing Persons in Uganda</h1>
<button data-category="Fallen">Fallen</button>
<button data-category="Kidnapped">Kidnapped</button>
<button data-category="Released">Released</button>
<button data-category="Remanded">Remanded</button>
</div>
<input type="text" id="searchInput" placeholder="Search Person's Name...">
</div>
Expand Down
2 changes: 2 additions & 0 deletions src/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
--black: #000000;
--yellow: #ffb224;
--purple: #8e4ec6;
--darkred: #800000;
--card-bg: #0a0a0a;
--card-hover-bg: #1a1a1a;
}
Expand Down Expand Up @@ -178,6 +179,7 @@ button:hover {
.card-status.fallen { background-color: var(--red); }
.card-status.kidnapped { background-color: var(--lightergrey); }
.card-status.released { background-color: var(--green); }
.card-status.remanded { background-color: var(--darkred); }

.card__info {
margin-bottom: 1rem;
Expand Down

0 comments on commit 1d7ccea

Please sign in to comment.