Skip to content

Commit

Permalink
Merge pull request #39 from homr0/rebecca-branch
Browse files Browse the repository at this point in the history
Hover button colors for favorites
  • Loading branch information
delquiam authored Nov 30, 2018
2 parents a683d63 + aefc0bf commit b2b3a53
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,18 +108,26 @@ nav {
display: none;
}

#recipeSpace #recipeAdd, #recipeSpace #recipeRemove, #restRemove {
#recipeSpace #recipeAdd, #recipeSpace #recipeRemove, #restAdd, #restRemove {
color: rgba(255, 255, 255, 1);
}

#recipeSpace #recipeAdd, #restAdd {
background-color: rgba(31, 31, 255, 0.9);
}

#recipeSpace #recipeAdd:hover, #restAdd:hover {
background-color: rgba(0, 0, 255, 0.9);
}

#recipeSpace #recipeRemove, #restRemove {
background-color: rgba(255, 31, 31, 0.9);
}

#recipeSpace #recipeRemove:hover, #restRemove:hover {
background-color: rgba(255, 0, 0, 0.9);
}

#recipeSpace .card-header {
font-weight: 700;
}
Expand Down

0 comments on commit b2b3a53

Please sign in to comment.