inventory.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. justify-content: space-around;
  27. }
  28. #addIngredientStrand form{
  29. display: flex;
  30. flex-direction: column;
  31. border: 2px solid rgb(255, 99, 107);
  32. padding: 25px;
  33. border-radius: 10px;
  34. }
  35. #addIngredientStrand form > *{
  36. margin: 5px;
  37. }
  38. #enterTransactionsStrand{
  39. display: none;
  40. flex-direction: column;
  41. align-items: center;
  42. }
  43. @media screen and (max-width: 600px){
  44. #inventoryStrand h1{
  45. font-size: 20px;
  46. text-align: center;
  47. margin: 5px;
  48. }
  49. .options{
  50. flex-direction: column;
  51. }
  52. .options > *{
  53. margin: 5px;
  54. }
  55. #inventoryStrand .button-small{
  56. font-size: 12px;
  57. }
  58. #inventoryStrand td, #inventoryStrand th{
  59. padding: 3px;
  60. font-size: 12px;
  61. }
  62. }