merchantSetup.css 1.9 KB

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