inventory.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. @media screen and (max-width: 600px){
  48. /* inventoryStrand */
  49. #inventoryStrand h1{
  50. font-size: 20px;
  51. text-align: center;
  52. margin: 5px;
  53. }
  54. .options{
  55. flex-direction: column;
  56. }
  57. .options > *{
  58. margin: 5px;
  59. }
  60. #inventoryStrand .button-small{
  61. font-size: 12px;
  62. }
  63. #inventoryStrand td, #inventoryStrand th{
  64. padding: 3px;
  65. font-size: 12px;
  66. }
  67. /* addIngredientStrand */
  68. .container{
  69. flex-direction: column;
  70. }
  71. #addIngredientStrand > *{
  72. margin: 10px;
  73. }
  74. }