merchantSetup.css 2.1 KB

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