merchantSetup.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. /* createRecipesStrand */
  45. #createRecipesStrand{
  46. display: none;
  47. }
  48. #createRecipesStrand > *{
  49. margin: 10px;
  50. }
  51. #recipeName{
  52. color: #ff626b;
  53. }
  54. @media screen and (max-width: 1000px){
  55. /* createIngredientsStrand */
  56. #createIngredientsStrand td, #createIngredientsStrand th{
  57. font-size: 15px;
  58. padding: 5px;
  59. }
  60. #createIngredientsStrand .button{
  61. font-size: 16px;
  62. }
  63. .inputField{
  64. max-width: 100px;
  65. }
  66. }
  67. @media screen and (max-width: 600px){
  68. .inputField{
  69. max-width: 50px;
  70. }
  71. /* addIngredientsStrand */
  72. #addIngredientsStrand h1, #addIngredientsStrand h5{
  73. text-align: center;
  74. }
  75. #addIngredientsStrand td, #addIngredientsStrand th{
  76. font-size: 12px;
  77. padding: 2px;
  78. }
  79. /* createIngredientsStrand */
  80. #createIngredientsStrand td, #createIngredientsStrand th{
  81. font-size: 12px;
  82. padding: 2px;
  83. }
  84. #createIngredientsStrand .button{
  85. font-size: 13px;
  86. }
  87. /* createRecipesStrand */
  88. #createRecipesStrand td, #createRecipesStrand th{
  89. font-size: 12px;
  90. padding: 2px;
  91. }
  92. }