merchantSetup.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. *{margin:0;padding:0;}
  2. table{
  3. margin: 20px;
  4. }
  5. .anticolumn{
  6. border: none;
  7. background: white;
  8. color: black;
  9. min-width: 0;
  10. }
  11. .container{
  12. flex-direction: column;
  13. align-items: center;
  14. }
  15. h1{
  16. margin: 10px;
  17. }
  18. .horizontal-container{
  19. display: flex;
  20. }
  21. .horizontal-container div{
  22. text-align: center;
  23. max-width: 50%;
  24. }
  25. th{
  26. border: 2px solid #ff626b;
  27. background: #001b2d;
  28. color: darkgray;
  29. padding: 3px;
  30. min-width: 150px;
  31. }
  32. td{
  33. border: 1px solid black;
  34. text-align: center;
  35. padding: 1px 10px;
  36. }
  37. .input-new{
  38. display: flex;
  39. flex-wrap: nowrap;
  40. }
  41. .input-error{
  42. border-color: red;
  43. }
  44. #newRecipes{
  45. display: none;
  46. flex-direction: column;
  47. align-items: center;
  48. }
  49. #basicInfoStrand{
  50. display: flex;
  51. }
  52. #basicInfoStrand form{
  53. display: flex;
  54. flex-direction: column;
  55. }
  56. #addIngredientsStrand{
  57. display: none;
  58. }
  59. #createIngredientsStrand{
  60. display: none;
  61. }
  62. #nameRecipesStrand{
  63. display: none;
  64. }
  65. #createRecipesStrand{
  66. display: none;
  67. }
  68. #recipeName{
  69. color: #ff626b;
  70. }