Files
NowChess-Frontend/src/app/components/chess-board/chess-board.component.css
T

63 lines
1.4 KiB
CSS

.board-shell {
--bottom-frame-height: clamp(18px, 4.5cqh, 40px);
width: min(98cqw, calc(98cqh - var(--bottom-frame-height)));
margin: 0 auto;
}
.board-grid {
display: grid;
grid-template-columns: repeat(8, 1fr);
border: var(--border-width) solid var(--color-border);
border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
overflow: hidden;
background: var(--color-text-primary);
}
.square {
position: relative;
aspect-ratio: 1 / 1;
display: grid;
place-items: center;
overflow: hidden;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border: 0;
padding: 0;
cursor: pointer;
}
.square.light {
background-image: url('/arabian-chess/sprites/board/board_square_white.png');
}
.square.dark {
background-image: url('/arabian-chess/sprites/board/board_square_black.png');
}
.square.highlighted::after {
content: '';
position: absolute;
width: 28%;
height: 28%;
border-radius: 50%;
background: var(--color-secondary-purple);
opacity: 0.75;
border: var(--border-width) solid var(--color-border);
}
.square.selected {
outline: 3px solid var(--color-primary);
outline-offset: -3px;
}
.board-bottom {
height: var(--bottom-frame-height);
width: 100%;
display: block;
object-fit: fill;
border: var(--border-width) solid var(--color-border);
border-top: 0;
border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}