recipeBook.css 582 B

12345678910111213141516171819202122232425262728293031
  1. #recipeBookStrand{
  2. display: none;
  3. align-items: center;
  4. }
  5. #recipeBookStrand .buttonBox{
  6. margin: 0;
  7. }
  8. #showHiddenRecipes{
  9. display: flex;
  10. align-items: center;
  11. }
  12. #showHiddenRecipes:hover{
  13. background: rgb(0, 27, 45);
  14. color: white;
  15. }
  16. #showHiddenRecipes input{
  17. margin-right: 15px;
  18. border-radius: none;
  19. }
  20. #recipeList{
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. width: 50%;
  25. overflow-y: auto;
  26. }