/*
 * Javascript MineSweeper v0.2
 * http://labs.ugolandini.com/minesweeper
 *
 * Copyright (c) 2009 Ugo Landini
 * Dual licensed under the MIT and GPL licenses.
 * http://labs.ugolandini.com/license/GPL-LICENSE.txt
 * http://labs.ugolandini.com/license/MIT-LICENSE.txt
 *
 * Date: 2010-01-10
 */

#mineField td {
    background: url('../images/tile.png') no-repeat center;
    border: 1px solid #333333;
    cursor: pointer;
    height: 25px;
    line-height: 25px;
    width: 25px;
    text-align: center;
    font-weight: bold;
    font-size:120%;
    overflow-x: hidden;
}

#mineField td.shown {
    background: #c5d0e4;
}

#mineField td.flagged {
    background: url('../images/flag.png') no-repeat center;
}

#mineField td.bombed {
    background: #c5d0e4 url('../images/bomb.png') no-repeat center;
}

#mineField td.lastClicked {
    background: #c8eee4 url('../images/bomb.png') no-repeat center;
}

#bombsRemaining {
    border: 3px solid #007e7e;
    width: 30px;
}

#timePassed {
    border: 3px solid #007e7e;
    width: 30px;
}
