inventory.css 1.6 KB

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