merchantSetup.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. #nameLabel{
  57. display: none;
  58. }
  59. #addIngredientsStrand{
  60. display: none;
  61. }
  62. #createIngredientsStrand{
  63. display: none;
  64. }
  65. #nameRecipesStrand{
  66. display: none;
  67. }
  68. #createRecipesStrand{
  69. display: none;
  70. }
  71. #recipeName{
  72. color: #ff626b;
  73. }