| 12345678910111213141516171819202122232425262728293031 |
- #recipeBookStrand{
- display: none;
- align-items: center;
- }
- #recipeBookStrand .buttonBox{
- margin: 0;
- }
- #showHiddenRecipes{
- display: flex;
- align-items: center;
- }
- #showHiddenRecipes:hover{
- background: rgb(0, 27, 45);
- color: white;
- }
- #showHiddenRecipes input{
- margin-right: 15px;
- border-radius: none;
- }
- #recipeList{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 50%;
- overflow-y: auto;
- }
|