recipeBook.css 522 B

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