| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- #homeStrand{
- display: flex;
- }
- .card{
- margin: 0 15px;
- flex-grow: 1;
- height: 100%;
- background: white;
- }
- .card > *{
- margin: 10px;
- }
- .card > p:first-of-type{
- font-size: 14px;
- font-weight: bold;
- text-align: center;
- }
- .flexRow{
- display: flex;
- justify-content: space-around;
- width: 100%;
- flex-basis: 100px;
- flex-grow: 1;
- margin: 15px 0;
- max-height: 43%;
- }
- .mostUsed{
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- #mostUsedRecipesList, #mostUsedList{
- height: 75%;
- overflow-y: auto;
- }
- #mostUsedRecipesList .choosable, #mostUsedList .choosable {
- padding: 10px;
- }
- #inventoryCheckCard{
- display: flex;
- flex-direction: column;;
- justify-content: space-between;
- flex-basis: 100px;
- flex-grow: 1;
- }
- #inventoryCheckCard ul{
- list-style: none;
- }
- #inventoryCheckCard button{
- margin-left: auto;
- }
- .ingredientCheck{
- display: flex;
- align-items: center;
- margin: 5px 0;
- max-height: 50px;
- }
- .inventoryCheckIngredient{
- width: 40%;
- font-weight: 300;
- font-size: 15px;
- margin-right: 25px;
- text-overflow: ellipsis;
- white-space: wrap;
- overflow: hidden;
- text-align: left;
- }
- .inventoryCheckUnit{
- width: 20%
- }
- .numberInput{
- display: flex;
- justify-content: center;
- width: 40%;
- margin-right: 25px;
- }
- .numberInput button{
- display: flex;
- justify-content: center;
- align-items: center;
- width: 30%;
- font-size: 23px;
- background: rgb(0, 27, 45);
- border: none;
- color: white;
- font-weight: bold;
- cursor: pointer;
- }
- .numberInput input{
- width: 55%;
- font-size: 15px;
- text-align: center;
- border: 1px solid black;
- }
- .numberInput input::-webkit-outer-spin-button,
- .numberInput input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- margin: 0;
- }
- .numberInput input[type=number] {
- -moz-appearance: textfield;
- }
- #popularIngredientsCard{
- display: flex;
- flex-direction: column;
- align-items: center;
- flex-basis: 100px;
- flex-grow: 2.5;
- padding: 5px;
- box-sizing: border-box;
- }
- #popularCanvas{
- margin: 0 35px;
- }
- .notice{
- color: red;
- font-size: 35px;
- font-weight: bold;
- }
|