jtulach@63: /** jtulach@63: * The MIT License (MIT) jtulach@63: * jtulach@63: * Copyright (C) 2013 Jaroslav Tulach jtulach@63: * jtulach@63: * Permission is hereby granted, free of charge, to any person obtaining a copy jtulach@63: * of this software and associated documentation files (the "Software"), to deal jtulach@63: * in the Software without restriction, including without limitation the rights jtulach@63: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell jtulach@63: * copies of the Software, and to permit persons to whom the Software is jtulach@63: * furnished to do so, subject to the following conditions: jtulach@63: * jtulach@63: * The above copyright notice and this permission notice shall be included in jtulach@63: * all copies or substantial portions of the Software. jtulach@63: * jtulach@63: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR jtulach@63: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, jtulach@63: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE jtulach@63: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER jtulach@63: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, jtulach@63: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN jtulach@63: * THE SOFTWARE. jtulach@63: */ jtulach@63: /** main chess style **/ jtulach@63: #apptitle { jtulach@63: font-size: 20px; jtulach@63: } jtulach@63: .log { jtulach@63: margin-bottom: 10px; jtulach@63: } jtulach@77: jtulach@77: .jumbotron { jtulach@77: background-color: #fafafa; jtulach@77: } jtulach@77: jtulach@63: table.field { jtulach@63: } jtulach@63: table.field td { jtulach@63: border: 1px solid black; jtulach@63: padding:10px; jtulach@71: width: 56px; jtulach@71: height: 56px; jtulach@63: vertical-align: middle; jtulach@63: text-align: center; jtulach@71: font-size:4em; jtulach@63: } jtulach@63: jtulach@104: table.field td div { jtulach@104: position: relative; jtulach@104: left: 0; jtulach@104: top: 0; jtulach@104: } jtulach@104: jtulach@65: table.field td.UNKNOWN { jtulach@75: background-color: #D6E4E1; jtulach@63: cursor: pointer; jtulach@63: } jtulach@68: table.field td.EXPLOSION { jtulach@75: background-color: #A31E39; jtulach@63: } jtulach@68: table.field td.DISCOVERED { jtulach@75: background-color: #9DB2B1; jtulach@68: } jtulach@63: .but-orientation { jtulach@63: margin-top:20px; jtulach@63: } jtulach@63: h3.log-h { jtulach@63: border-top:1px solid silver; jtulach@63: } jtulach@63: .badge-status { jtulach@63: display:inline-block; jtulach@63: margin-left:20px; jtulach@63: padding:5px; jtulach@63: font-size:1em; jtulach@63: text-shadow: none; jtulach@63: } jtulach@63: .btn {text-shadow: none;} jtulach@63: .select {line-height: inherit;} jtulach@63: .uneditable-input { jtulach@63: margin-left: 0; jtulach@63: color: black; jtulach@63: } jtulach@63: span.myturn { jtulach@63: display: inline-block; jtulach@63: position:relative; jtulach@63: left:23px; jtulach@63: padding:3px; jtulach@63: } jtulach@63: .whitePiece { jtulach@63: text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; jtulach@63: color: white; jtulach@63: }