ff75c8ce2f
User Profile info, no game before login/register, menu bar --------- Co-authored-by: Lala, Shahd <Shahd.Lala@sybit.de> Co-authored-by: shahdlala66 <shahd.lala66@gmail.com> Reviewed-on: #2
37 lines
612 B
CSS
37 lines
612 B
CSS
.piece {
|
|
width: clamp(50px, 11cqh, 160px);
|
|
height: clamp(40px, 8cqh, 120px);
|
|
display: block;
|
|
object-fit: contain;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.piece[draggable='true'] {
|
|
cursor: grab;
|
|
}
|
|
|
|
.piece[draggable='true']:active {
|
|
cursor: grabbing;
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
.piece {
|
|
width: clamp(40px, 9cqh, 130px);
|
|
height: clamp(40px, 9cqh, 130px);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.piece {
|
|
width: clamp(32px, 8cqh, 100px);
|
|
height: clamp(32px, 8cqh, 100px);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.piece {
|
|
width: clamp(24px, 6cqh, 75px);
|
|
height: clamp(24px, 6cqh, 75px);
|
|
}
|
|
}
|