<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {

    text-align: center; /* suck it */
	background-color:#790000;
	background: #790000 url('/img/background.png') repeat-x;
}
#game {
    padding: 10px;
}
table,tr,td {
    margin:0;
    padding:0;
}
p {
    max-width: 450px;
    margin: 1em auto;
}
h1 {
    margin-bottom: .2em;
	color:red;
   
}
#game table {
    background: #FF5C00;
    margin: 0 auto;
    box-shadow: 0 0 20px #fff;


}
.cell {
    color: blue;
    text-align: center;
    font-size: 24px;
    width: 48px !important;
    height: 48px !important;
    border: 1px solid white;

}
.cell:not(.game-value){
    cursor: pointer;
}
.cell:not(.game-value):hover {
    background: #EEE;
}
.first-row {
    border-top: 2px solid #000;
}
.first-col {
    border-left: 2px solid #000;
}
.mini-right {
    border-right: 2px solid #000;
}
.mini-bottom {
    border-bottom: 2px solid #000;
}

/* individual cells */
.cell-selected {
    background: lightBlue;
}
.game-value {
    font-weight: bold;
    cursor: default;
    color: #000;
}
.conflict {
    color: red;
}
/* timer */
#timer {
	color: #fff;
    margin: 10px;
    font-size: 1.5em;
}
/* ending dialog */
.ending {
    border: 1px solid black;
    width: 400px;
    margin: 0 auto;
    position: relative;
    top: -615px;
    background: green;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    color: white;
}
/* input dialog */
.input-dialog, .input-input{
    padding: 0;
    margin: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
}

.input-dialog {
    position: absolute;
    background: #f5f0c1;
    border: 1px solid blue;
    box-shadow: 0 0 10px #000;
    opacity: 0.8;
}
.input-input {
    border: none;
    outline: none;
    text-align: center;
    font-size: 24px;
    line-height: 48px; /* fucking ie */
}

#header {
	margin-top: 12px;
    margin-bottom: 2px;
}

/* options */
#options-wrap *:not(div) {
    margin: 10px;
}
#options-wrap label {
    border: 2px solid white;
    padding: 8px;
    border-radius: 6px;
    background: #FF5C00;
}

.button {
    color: #000;
    font-size: 100%;
    text-decoration: none;
    padding: 10px 15px !important;
    margin: 0 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid white;
	font-weight:500;
    cursor: pointer;
    /* cross b gradient */
    background: #FF5C00; /* Old browsers */
    background: -moz-linear-gradient(top, #FF5C00 0%, #FF9428 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FF5C00), color-stop(100%,#FF9428)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #FF5C00 0%,#FF9428 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #FF5C00 0%,#FF9428 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #FF5C00 0%,#FF9428 100%); /* IE10+ */
    background: linear-gradient(top, #FF5C00 0%,#FF9428 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF5C00', endColorstr='#FF9428',GradientType=0 ); /* IE6-9 */
}
.button:hover {
    color: #000;
    background: #FFA850;
    -webkit-box-shadow: 0 0 2px #666;
    -moz-box-shadow: 0 0 2px #666;
    box-shadow: 0 0 2px #666;
}
.button:active {
    color: #84b8f3;
    border: 1px solid #71adf1;
    -webkit-box-shadow: inset 1px 1px 2px #444;
    -moz-box-shadow: inset 1px 1px 2px #444;
    box-shadow: inset 1px 1px 2px #444;
}

@media print {
    * {
	background: #FFF;
    }
    #options-wrap, #actions-wrap, #timer, #sc-info  {
	display: none;
    }
}
</pre></body></html>