| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ingredientsStrand{
- display: none;
- align-items: center;
- height: 100%;
- box-sizing: border-box;
- }
- #categoryList{
- overflow-y: auto;
- width: 80%;
- }
- .categoryDiv{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .categoryDiv > div:first-of-type{
- display: flex;
- cursor: pointer;
- width: 100%;
- margin: 5px 0;
- }
- .categoryDiv > div:first-of-type p{
- display: flex;
- align-items: center;
- padding: 20px 0 20px 100px;
- background: rgb(0, 27, 45);
- flex-grow: 1;
- color: white;
- margin-right: 25px
- }
- .categoryDiv > div:first-of-type button{
- padding: 10px;
- background: rgb(0, 27, 45);
- border: none;
- width: 75px;
- height: 75px;
- cursor: pointer;
- }
- .ingredientsDiv{
- flex-direction: column;
- width: 50%;
- }
- .ingredientSpacer{
- border: none;
- border-top: 1px dashed black;
- margin: auto;
- }
|