musical-chess / src /styles /ChessPiece.css
Maximus Powers
final
3568151
raw
history blame contribute delete
527 Bytes
.chess-piece {
display: flex;
align-items: center;
justify-content: center;
cursor: inherit;
transition: opacity 0.2s ease;
}
.chess-piece.dragging {
opacity: 0.5;
}
.piece-image {
width: 100%;
height: 100%;
object-fit: contain;
pointer-events: none;
user-select: none;
-webkit-user-drag: none;
}
.piece-symbol {
font-family: 'Chess Merida', 'Chess Alpha', serif;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
pointer-events: none;
user-select: none;
}