/**
 * This file is part of the iBobr - Chess package
 *
 * (c) Ondřej Záruba <info@zaruba-ondrej.cz>
 *
 * For the full copyright and license information, please view the license.md
 * file that was distributed with this source code.
 */

.chess-row {
    display: block;
    height: 40px;
}

.chess-cell {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.chess-dark-cell {
    background-image: url(./images/chessboard-item.png);
}

.chess-white-cell {
    background-image: url(./images/chessboard-item-white.png);
}

.chess-white-cell.chess-cell-active {
    background-image: url(./images/chessboard-item-white-green.png);
}

.chess-dark-cell.chess-cell-active {
    background-image: url(./images/chessboard-item-green.png);
}

.chess-queen-container {
    position: relative;
    width: 40px;
    height: 40px;
}
.chess-queen {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url(./images/queen.png);
}

.chess-answer-row input {
    margin-right: 10px;
    margin-bottom: 5px;
}

.chess-answer strong {
    display: block;
    margin: 15px 0;
}