merchantSetup.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. .clickable{
  43. cursor: pointer;
  44. }
  45. /* Create Ingredients Strand */
  46. #createIngredientsStrand{
  47. display: none;
  48. }
  49. #createIngredientsStrand > *{
  50. margin: 10px;
  51. }
  52. /* Name Recipes Strand */
  53. #nameRecipesStrand{
  54. display: none;
  55. }
  56. #nameRecipesStrand > *{
  57. margin: 10px;
  58. }
  59. /* Create Recipes Strand */
  60. #createRecipesStrand{
  61. display: none;
  62. }
  63. #createRecipesStrand > *{
  64. margin: 10px;
  65. }
  66. #recipeName{
  67. color: #ff626b;
  68. }
  69. @media screen and (max-width: 1000px){
  70. /* createIngredientsStrand */
  71. #createIngredientsStrand td, #createIngredientsStrand th{
  72. font-size: 15px;
  73. padding: 5px;
  74. }
  75. #createIngredientsStrand .button{
  76. font-size: 16px;
  77. }
  78. .inputField{
  79. max-width: 100px;
  80. }
  81. }
  82. @media screen and (max-width: 600px){
  83. .inputField{
  84. max-width: 50px;
  85. }
  86. /* addIngredientsStrand */
  87. #addIngredientsStrand h1, #addIngredientsStrand h5{
  88. text-align: center;
  89. }
  90. #addIngredientsStrand td, #addIngredientsStrand th{
  91. font-size: 12px;
  92. padding: 2px;
  93. }
  94. /* createIngredientsStrand */
  95. #createIngredientsStrand td, #createIngredientsStrand th{
  96. font-size: 12px;
  97. padding: 2px;
  98. }
  99. #createIngredientsStrand .button{
  100. font-size: 13px;
  101. }
  102. /* createRecipesStrand */
  103. #createRecipesStrand td, #createRecipesStrand th{
  104. font-size: 12px;
  105. padding: 2px;
  106. }
  107. }