| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .sidebar{
- display: flex;
- width: 18vw;
- height: 100vh;
- box-sizing: border-box;
- padding: 25px;
- transition: width 0.2s;
- overflow: hidden;
- box-shadow: -1px 0px 10px gray;
- }
- .sidebarHide{
- width: 0;
- transition: width 0.2s;
- margin: 0;
- padding: 0;
- overflow: hidden;
- }
- .sidebarHide *{
- width: 0;
- transition: width 0.2s;
- }
- .sidebarHide input{
- display: none;
- }
- #addIngredient{
- flex-direction: column;
- }
- #ingredientDetails{
- flex-direction: column;
- align-items: center;
- }
- .lineBorder{
- width: 100%;
- border-bottom: 1px solid gray;
- }
- #ingredientDetails > p{
- border-radius: 10px;
- background: gray;
- color: white;
- padding: 0 3px;
- font-size: 14px;
- }
- #ingredientDetails label{
- font-size: 15px;
- text-align: left;
- }
- #ingredientDetails label p{
- font-size: 25px;
- font-weight: bold;
- }
|