inventory.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* Inventory Strand */
  2. #inventoryStrand{
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. }
  7. #inventoryStrand > *{
  8. margin: 10px;
  9. }
  10. #inventoryStrand h1{
  11. font-size: 40px;
  12. margin: 40px;
  13. }
  14. #inventoryStrand span{
  15. color: rgb(255, 99, 107);
  16. }
  17. #inventoryStrand th{
  18. cursor: pointer;
  19. }
  20. .options{
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. }
  25. .options > *{
  26. margin: 10px;
  27. }
  28. #filter{
  29. max-height: 32px;
  30. }
  31. /* Add Ingredient Strand */
  32. #addIngredientStrand{
  33. display: none;
  34. flex-direction: column;
  35. align-items: center;
  36. }
  37. #addIngredientStrand > *{
  38. margin: 25px;
  39. }
  40. .container{
  41. display: flex;
  42. justify-content: space-around;
  43. }
  44. /* Enter Transactions Strand */
  45. #enterTransactionsStrand{
  46. display: none;
  47. flex-direction: column;
  48. align-items: center;
  49. }
  50. #enterTransactionsStrand > *{
  51. margin: 10px;
  52. }
  53. /* Enter Purchases Strand */
  54. #enterPurchaseStrand{
  55. display: none;
  56. flex-direction: column;
  57. align-items: center;
  58. }
  59. #enterPurchaseStrand > *{
  60. margin: 10px;
  61. }
  62. @media screen and (max-width: 600px){
  63. /* Inventory Strand */
  64. #inventoryStrand h1{
  65. font-size: 20px;
  66. text-align: center;
  67. margin: 5px;
  68. }
  69. .options{
  70. flex-direction: column;
  71. }
  72. .options > *{
  73. margin: 5px;
  74. }
  75. #inventoryStrand .button-small{
  76. font-size: 12px;
  77. }
  78. #inventoryStrand td, #inventoryStrand th{
  79. padding: 3px;
  80. font-size: 12px;
  81. }
  82. /* addIngredientStrand */
  83. .container{
  84. flex-direction: column;
  85. }
  86. #addIngredientStrand > *{
  87. margin: 10px;
  88. }
  89. }