merchantSetup.css 2.0 KB

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