Spaces:
Sleeping
Sleeping
File size: 1,000 Bytes
3568151 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
.promotion-dialog-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.promotion-dialog {
background-color: #282828;
border: 3px solid #ffffff;
border-radius: 10px;
padding: 20px;
min-width: 300px;
text-align: center;
}
.promotion-dialog-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
color: #ffffff;
}
.promotion-buttons {
display: flex;
gap: 10px;
justify-content: center;
}
.promotion-button {
background-color: #505050;
color: white;
border: 2px solid #ffffff;
border-radius: 8px;
padding: 6px;
cursor: pointer;
transition: all 0.2s ease;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}
.promotion-button:hover {
background-color: #6e6e6e;
transform: translateY(-1px);
}
.promotion-button:active {
transform: translateY(0);
} |