mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-28 00:08:50 +00:00
fd99ece8e3
* wchess: whisper assisted chess * wchess: fix allowed moves in check * wchess: touchstart, touchend events * wchess: css, disabled button * wchess : html touches * wchess : minor fixes and code style * wchess : bump encoder context to 1280 * wchess : index.html * wchess : fix CI warnings * wchess : add array header * wchess : build static library * wchess : display grammar * wchess : update UX * wchess : add comment * wchess : add README --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
55 lines
978 B
CSS
55 lines
978 B
CSS
/*! chessboard.js v1.0.0 | (c) 2019 Chris Oakman | MIT License chessboardjs.com/license */
|
|
|
|
.clearfix-7da63 {
|
|
clear: both;
|
|
}
|
|
|
|
.board-b72b1 {
|
|
border: 2px solid #404040;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.square-55d63 {
|
|
float: left;
|
|
position: relative;
|
|
|
|
/* disable any native browser highlighting */
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.white-1e1d7 {
|
|
background-color: #f0d9b5;
|
|
color: #b58863;
|
|
}
|
|
|
|
.black-3c85d {
|
|
background-color: #b58863;
|
|
color: #f0d9b5;
|
|
}
|
|
|
|
.highlight1-32417, .highlight2-9c5d2 {
|
|
box-shadow: inset 0 0 3px 3px yellow;
|
|
}
|
|
|
|
.notation-322f9 {
|
|
cursor: default;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
font-size: 14px;
|
|
position: absolute;
|
|
}
|
|
|
|
.alpha-d2270 {
|
|
bottom: 1px;
|
|
right: 3px;
|
|
}
|
|
|
|
.numeric-fc462 {
|
|
top: 2px;
|
|
left: 2px;
|
|
}
|