inventory.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #inventoryStrand{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. }
  6. #inventoryStrand h1{
  7. font-size: 40px;
  8. margin: 40px;
  9. }
  10. #inventoryStrand span{
  11. color: rgb(255, 99, 107);
  12. }
  13. .options{
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. }
  18. .options > *{
  19. margin: 10px;
  20. }
  21. #filter{
  22. max-height: 32px;
  23. }
  24. #addIngredientStrand{
  25. display: none;
  26. flex-direction: column;
  27. align-items: center;
  28. }
  29. #addIngredientStrand > *{
  30. margin: 25px;
  31. }
  32. .container{
  33. display: flex;
  34. justify-content: space-around;
  35. }
  36. #enterTransactionsStrand{
  37. display: none;
  38. flex-direction: column;
  39. align-items: center;
  40. }
  41. @media screen and (max-width: 600px){
  42. /* inventoryStrand */
  43. #inventoryStrand h1{
  44. font-size: 20px;
  45. text-align: center;
  46. margin: 5px;
  47. }
  48. .options{
  49. flex-direction: column;
  50. }
  51. .options > *{
  52. margin: 5px;
  53. }
  54. #inventoryStrand .button-small{
  55. font-size: 12px;
  56. }
  57. #inventoryStrand td, #inventoryStrand th{
  58. padding: 3px;
  59. font-size: 12px;
  60. }
  61. /* addIngredientStrand */
  62. .container{
  63. flex-direction: column;
  64. }
  65. #addIngredientStrand > *{
  66. margin: 10px;
  67. }
  68. }