﻿/* Game - Start */
#LightsOutGame-Root {
    text-align:left;
}

.gameBoard {
    width: 310px;
    max-height: 310px;
    background-color: black;
    padding: 5px;
    border-radius: 5px;
}

    .gameBoard .light {
        display: inline-block;
        width: 100px;
        height: 100px;
        max-height: 100px;
        margin: 0px;
        padding: 0px;
        border: 1px solid black;
        border-radius: 50px;
        background-color: red;
    }

    .gameBoard .light.on {
        background-color: green;
    }

.gameComplete {
    font-weight: bold;
} 


