| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .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;
- visibility: hidden;
- }
- .sidebarHide *{
- width: 0;
- transition: width 0.2s;
- }
- .sidebarHide input{
- display: none;
- }
- #addIngredient{
- flex-direction: column;
- }
- #ingredientDetails{
- flex-direction: column;
- align-items: center;
- }
- #ingredientDetails button:first-of-type{
- background: none;
- border: none;
- cursor: pointer;
- margin-bottom: 100px;
- margin-right: auto;
- }
- .lineBorder{
- width: 100%;
- border-bottom: 1px solid gray;
- margin: 25px;
- }
- #ingredientDetails > p{
- border-radius: 10px;
- background: gray;
- color: white;
- padding: 0 3px;
- font-size: 14px;
- }
- #ingredientDetails label{
- font-size: 20px;
- text-align: center;
- }
- #ingredientDetails label p{
- font-size: 30px;
- font-weight: bold;
- padding: 10px;
- }
|