game-mobile.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #brew-right-side {
  2. bottom: 60px;
  3. right: 0;
  4. width: calc(100% - 42px);
  5. margin: 14px;
  6. min-width: auto;
  7. }
  8. #brew-header-container h1 {
  9. margin: 12px;
  10. font-size: 24px;
  11. }
  12. #brew-ingredients-container {
  13. height: 80px;
  14. margin: 8px 15px;
  15. gap: 6px;
  16. justify-content: space-around;
  17. min-width: auto;
  18. }
  19. .ingredient-container {
  20. border: 2px dashed #dec8ad;
  21. padding: 6px;
  22. text-align: center;
  23. flex-grow: 1;
  24. flex-basis: 1;
  25. }
  26. .ingredient-container:hover {
  27. border: 2px dashed #7c603f;
  28. }
  29. .ingredient-container img {
  30. width: 100%;
  31. height: 100%;
  32. }
  33. #brew-selected-container {
  34. height: 180px;
  35. gap: 6px;
  36. min-width: 100px;
  37. }
  38. .ingredient-selected-container {
  39. border: 2px dashed #dec8ad;
  40. padding: 4px;
  41. }
  42. .ingredient-selected-container.disabled {
  43. border: 2px dashed #adadad;
  44. }
  45. .ingredient-selected-container:hover {
  46. border: 2px dashed #7c603f;
  47. cursor: pointer;
  48. }
  49. .ingredient-selected-container.disabled:hover {
  50. border: 2px dashed #adadad;
  51. cursor: auto;
  52. }
  53. .ingredient-selected-container .active-selected-ingredient .selected-ingredient-image {
  54. border: 2px dashed #dec8ad;
  55. margin: 2px;
  56. width: 50px;
  57. height: 50px;
  58. }
  59. .ingredient-selected-container .active-selected-ingredient .selected-ingredient-image img {
  60. width: 100%;
  61. height: 100%;
  62. border-radius: 40px;
  63. }
  64. .ingredient-selected-container .active-selected-ingredient .selected-ingredient-description {
  65. margin: 4px;
  66. }
  67. .ingredient-selected-container .active-selected-ingredient .selected-ingredient-description h2 {
  68. font-size: 20px;
  69. }
  70. .ingredient-selected-container .active-selected-ingredient .selected-ingredient-description p {
  71. font-size: 14px;
  72. }
  73. #brew-potion-summary-container {
  74. height: 110px;
  75. margin: 15px;
  76. display: flex;
  77. flex-direction: row;
  78. min-width: 100px;
  79. }
  80. #potion-icon-container {
  81. border: 2px dashed #dec8ad;
  82. margin: 0 6px;
  83. }
  84. #potion-icon {
  85. border-radius: 50px;
  86. }
  87. #potion-description h2 {
  88. text-align: center;
  89. font-size: 20px;
  90. }
  91. ul#potion-properties-list {
  92. list-style: none;
  93. margin: 4px 0;
  94. }
  95. ul#potion-properties-list li {
  96. font-size: 14px;
  97. }
  98. #brew-button-container {
  99. margin-left: auto;
  100. margin-right: auto;
  101. width: 80%;
  102. }
  103. #brew-button-inner-container {
  104. position: relative;
  105. right: auto;
  106. padding: 2px;
  107. margin-top: 25px;
  108. border-radius: 32px;
  109. width: 100%;
  110. background-color: #a94e83;
  111. }
  112. #brew-button-container button {
  113. font-size: 20px;
  114. width: 100%;
  115. }