123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- #brew-right-side {
- bottom: 60px;
- right: 0;
- width: calc(100% - 42px);
- margin: 14px;
- min-width: auto;
- }
- #brew-header-container h1 {
- margin: 12px;
- font-size: 24px;
- }
- #brew-ingredients-container {
- height: 80px;
- margin: 8px 15px;
- gap: 6px;
- justify-content: space-around;
- min-width: auto;
-
- }
- .ingredient-container {
- border: 2px dashed #dec8ad;
- padding: 6px;
- text-align: center;
- flex-grow: 1;
- flex-basis: 1;
- }
- .ingredient-container:hover {
- border: 2px dashed #7c603f;
- }
- .ingredient-container img {
- width: 100%;
- height: 100%;
- }
- #brew-selected-container {
- height: 180px;
- gap: 6px;
- min-width: 100px;
- }
- .ingredient-selected-container {
- border: 2px dashed #dec8ad;
- padding: 4px;
- }
- .ingredient-selected-container.disabled {
- border: 2px dashed #adadad;
- }
- .ingredient-selected-container:hover {
- border: 2px dashed #7c603f;
- cursor: pointer;
- }
- .ingredient-selected-container.disabled:hover {
- border: 2px dashed #adadad;
- cursor: auto;
- }
- .ingredient-selected-container .active-selected-ingredient .selected-ingredient-image {
- border: 2px dashed #dec8ad;
- margin: 2px;
- width: 50px;
- height: 50px;
- }
- .ingredient-selected-container .active-selected-ingredient .selected-ingredient-image img {
- width: 100%;
- height: 100%;
- border-radius: 40px;
- }
- .ingredient-selected-container .active-selected-ingredient .selected-ingredient-description {
- margin: 4px;
- }
- .ingredient-selected-container .active-selected-ingredient .selected-ingredient-description h2 {
- font-size: 20px;
- }
- .ingredient-selected-container .active-selected-ingredient .selected-ingredient-description p {
- font-size: 14px;
- }
- #brew-potion-summary-container {
- height: 110px;
- margin: 15px;
- display: flex;
- flex-direction: row;
- min-width: 100px;
- }
- #potion-icon-container {
- border: 2px dashed #dec8ad;
- margin: 0 6px;
- }
- #potion-icon {
- border-radius: 50px;
- }
- #potion-description h2 {
- text-align: center;
- font-size: 20px;
- }
- ul#potion-properties-list {
- list-style: none;
- margin: 4px 0;
- }
- ul#potion-properties-list li {
- font-size: 14px;
- }
- #brew-button-container {
- margin-left: auto;
- margin-right: auto;
- width: 80%;
- }
- #brew-button-inner-container {
- position: relative;
- right: auto;
- padding: 2px;
- margin-top: 25px;
- border-radius: 32px;
- width: 100%;
- background-color: #a94e83;
- }
- #brew-button-container button {
- font-size: 20px;
- width: 100%;
- }
|