/* 
    Document   : style
    Created on : Jun 21, 2011, 1:40:41 PM
    Author     : dunn
*/

#message {
    color: red;
}

#bingo_boards a {
    position: absolute;
}

td.highlight {
    background-color: lightskyblue;
}

#bingo_boards td.winner {
    background-color: yellowgreen;
}

#bingo_boards table {
    margin-top: 2em;
}

#bingo_boards table td {
    padding: 8px;
    border: 1px solid black;
    text-align: center;
}

html.modal div a {
    display: none;
}

html.modal div.fullscreen a {
    display: inline;
}

@media screen
{
div.fullscreen {
    position: absolute; /* I'd like to use fixed but it doesn't work on mobiles */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    background-color: black;
    background-color: RGBA(0, 0, 0, 0.8);
}

div.fullscreen table {
    width: 90%;
    height: 85%;
    background-color: white;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

div.fullscreen a {
    color: cyan;
}
}

@media print
{
#builder, a {
    display: none;
}
table {
    /* sadly this is only supported on opera */
    page-break-inside: avoid;
}
}