| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /* Inventory Strand */
- #inventoryStrand{
- flex-direction: column;
- align-items: center;
- }
- #inventoryStrand > *{
- margin: 10px;
- }
- #inventoryStrand h1{
- font-size: 40px;
- margin: 40px;
- }
- #inventoryStrand span{
- color: rgb(255, 99, 107);
- }
- #inventoryStrand th{
- cursor: pointer;
- }
- .options{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .options > *{
- margin: 10px;
- }
- #filter{
- max-height: 32px;
- }
- /* Account Strand */
- #accountStrand{
- flex-direction: column;
- align-items: center;
- }
- /* Add Ingredient Action */
- #addIngredientAction{
- flex-direction: column;
- align-items: center;
- }
- #addIngredientAction > *{
- margin: 25px;
- }
- .container{
- display: flex;
- justify-content: space-around;
- }
- /* Enter Transactions Action */
- #enterTransactionsAction{
- flex-direction: column;
- align-items: center;
- }
- #enterTransactionsAction > *{
- margin: 10px;
- }
- /* Enter Purchases Action */
- #enterPurchasesAction{
- flex-direction: column;
- align-items: center;
- }
- #enterPurchasesAction > *{
- margin: 10px;
- }
- @media screen and (max-width: 600px){
- /* Inventory Strand */
- #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;
- }
- #addIngredientAction > *{
- margin: 10px;
- }
- }
|