Added 45 entries from form (5/11 3:43) and introduce a filter by Shadows

This commit is contained in:
Joyce Chen
2020-05-11 05:34:32 -04:00
parent 3a5f62c121
commit 10789f1894
8 changed files with 874 additions and 537 deletions

View File

@@ -138,3 +138,38 @@ input:checked + .slider:before {
.slider.round:before {
border-radius: 50%;
}
.filter-btn {
border: none;
outline: none;
background-color: #f1f1f1;
cursor: pointer;
font-size: small;
margin: .2rem .2rem;
}
.filter-btn:hover {
background-color: #ddd;
}
.filter-btn:focus {
outline: none;
box-shadow: none;
}
.filter-btn.active {
background-color: #666;
color: white;
}
.hidden {
display: none;
}