inventory.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #inventoryStrand{
  2. display: flex;
  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. #addIngredientStrand{
  31. display: none;
  32. flex-direction: column;
  33. align-items: center;
  34. }
  35. #addIngredientStrand > *{
  36. margin: 25px;
  37. }
  38. .container{
  39. display: flex;
  40. justify-content: space-around;
  41. }
  42. #enterTransactionsStrand{
  43. display: none;
  44. flex-direction: column;
  45. align-items: center;
  46. }
  47. #enterTransactionsStrand > *{
  48. margin: 10px;
  49. }
  50. #enterPurchaseStrand{
  51. display: none;
  52. flex-direction: column;
  53. align-items: center;
  54. }
  55. #enterPurchaseStrand > *{
  56. margin: 10px;
  57. }
  58. @media screen and (max-width: 600px){
  59. /* inventoryStrand */
  60. #inventoryStrand h1{
  61. font-size: 20px;
  62. text-align: center;
  63. margin: 5px;
  64. }
  65. .options{
  66. flex-direction: column;
  67. }
  68. .options > *{
  69. margin: 5px;
  70. }
  71. #inventoryStrand .button-small{
  72. font-size: 12px;
  73. }
  74. #inventoryStrand td, #inventoryStrand th{
  75. padding: 3px;
  76. font-size: 12px;
  77. }
  78. /* addIngredientStrand */
  79. .container{
  80. flex-direction: column;
  81. }
  82. #addIngredientStrand > *{
  83. margin: 10px;
  84. }
  85. }