| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* Shop Item Styles */
- .shop-item {
- flex-direction: column;
- padding: 10px;
- margin-bottom: 5px;
- background-color: rgb(250, 250, 250);
- border-width: 1px;
- border-color: rgb(200, 200, 200);
- border-radius: 5px;
- min-height: 80px;
- }
- .shop-item:hover {
- background-color: rgb(240, 240, 240);
- }
- .sell-item {
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- padding: 10px;
- margin-bottom: 5px;
- background-color: rgb(250, 245, 240);
- border-width: 1px;
- border-color: rgb(200, 180, 160);
- border-radius: 5px;
- }
- .sell-item:hover {
- background-color: rgb(240, 235, 230);
- }
- .item-name {
- font-size: 16px;
- color: rgb(50, 50, 50);
- font-weight: bold;
- margin-bottom: 5px;
- }
- .item-description {
- font-size: 12px;
- color: rgb(100, 100, 100);
- margin-bottom: 10px;
- white-space: normal;
- }
- .item-price {
- font-size: 14px;
- color: rgb(0, 120, 0);
- font-weight: bold;
- margin-right: 10px;
- }
- .buy-button {
- background-color: rgb(50, 150, 50);
- color: rgb(255, 255, 255);
- border-width: 0;
- border-radius: 3px;
- padding: 5px 15px;
- font-weight: bold;
- min-width: 60px;
- }
- .buy-button:hover {
- background-color: rgb(40, 130, 40);
- }
- .sell-button {
- background-color: rgb(150, 100, 50);
- color: rgb(255, 255, 255);
- border-width: 0;
- border-radius: 3px;
- padding: 5px 15px;
- font-weight: bold;
- }
- .sell-button:hover {
- background-color: rgb(130, 80, 30);
- }
- .unaffordable {
- color: rgb(150, 50, 50) !important;
- }
- .not-accepted {
- color: rgb(150, 50, 50) !important;
- }
- .active-tab {
- background-color: rgb(200, 180, 140) !important;
- color: rgb(50, 50, 50) !important;
- }
- /* Medieval styling for the shop window */
- #shop-window {
- background-image: url('project://database/Assets/UI/medieval-background.png');
- }
|