merchantSetup.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* General purpose */
  2. .buttonDiv{
  3. display: flex;
  4. justify-content: space-between;
  5. }
  6. .buttonDiv > *{
  7. margin: 5px;
  8. }
  9. .container{
  10. flex-direction: column;
  11. align-items: center;
  12. }
  13. /* Agreement Strand */
  14. #agreementStrand{
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. }
  19. #agreementStrand > *{
  20. margin: 10px;
  21. }
  22. /* Basic Info Strand */
  23. #basicInfoStrand{
  24. display: none;
  25. }
  26. #basicInfoStrand > *{
  27. margin: 10px;
  28. }
  29. #nameLabel{
  30. display: none;
  31. }
  32. /* Add Ingredients Strand */
  33. #addIngredientsStrand{
  34. display: none;
  35. }
  36. #addIngredientsStrand > *{
  37. margin: 10px;
  38. }
  39. #addIngredientsStrand h5{
  40. margin-top: 0;
  41. }
  42. /* Create Ingredients Strand */
  43. #createIngredientsStrand{
  44. display: none;
  45. }
  46. #createIngredientsStrand > *{
  47. margin: 10px;
  48. }
  49. /* Name Recipes Strand */
  50. #nameRecipesStrand{
  51. display: none;
  52. }
  53. #nameRecipesStrand > *{
  54. margin: 10px;
  55. }
  56. /* Create Recipes Strand */
  57. #createRecipesStrand{
  58. display: none;
  59. }
  60. #createRecipesStrand > *{
  61. margin: 10px;
  62. }
  63. #recipeName{
  64. color: #ff626b;
  65. }
  66. @media screen and (max-width: 1000px){
  67. /* createIngredientsStrand */
  68. #createIngredientsStrand td, #createIngredientsStrand th{
  69. font-size: 15px;
  70. padding: 5px;
  71. }
  72. #createIngredientsStrand .button{
  73. font-size: 16px;
  74. }
  75. .inputField{
  76. max-width: 100px;
  77. }
  78. }
  79. @media screen and (max-width: 600px){
  80. .inputField{
  81. max-width: 50px;
  82. }
  83. /* addIngredientsStrand */
  84. #addIngredientsStrand h1, #addIngredientsStrand h5{
  85. text-align: center;
  86. }
  87. #addIngredientsStrand td, #addIngredientsStrand th{
  88. font-size: 12px;
  89. padding: 2px;
  90. }
  91. /* createIngredientsStrand */
  92. #createIngredientsStrand td, #createIngredientsStrand th{
  93. font-size: 12px;
  94. padding: 2px;
  95. }
  96. #createIngredientsStrand .button{
  97. font-size: 13px;
  98. }
  99. /* createRecipesStrand */
  100. #createRecipesStrand td, #createRecipesStrand th{
  101. font-size: 12px;
  102. padding: 2px;
  103. }
  104. }