inventory.css 1.8 KB

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