| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #inventoryStrand{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- #inventoryStrand h1{
- font-size: 40px;
- margin: 40px;
- }
- #inventoryStrand span{
- color: rgb(255, 99, 107);
- }
- .options{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .options > *{
- margin: 10px;
- }
- #filter{
- max-height: 32px;
- }
- #addIngredientStrand{
- display: none;
- flex-direction: column;
- align-items: center;
- }
- #addIngredientStrand > *{
- margin: 25px;
- }
- .container{
- display: flex;
- justify-content: space-around;
- }
- #enterTransactionsStrand{
- display: none;
- flex-direction: column;
- align-items: center;
- }
- @media screen and (max-width: 600px){
- /* inventoryStrand */
- #inventoryStrand h1{
- font-size: 20px;
- text-align: center;
- margin: 5px;
- }
- .options{
- flex-direction: column;
- }
- .options > *{
- margin: 5px;
- }
- #inventoryStrand .button-small{
- font-size: 12px;
- }
- #inventoryStrand td, #inventoryStrand th{
- padding: 3px;
- font-size: 12px;
- }
- /* addIngredientStrand */
- .container{
- flex-direction: column;
- }
- #addIngredientStrand > *{
- margin: 10px;
- }
- }
|