| 1 | .chessboard_SVG { |
| 2 | background-color: #BA8C63; |
| 3 | } |
| 4 | |
| 5 | piece.white.stone { |
| 6 | background-image: url('/pieces/Weiqi/black_stone.svg'); |
| 7 | } |
| 8 | piece.black.stone, piece.white.stone.one-color { |
| 9 | background-image: url('/pieces/Weiqi/white_stone.svg'); |
| 10 | } |
| 11 | |
| 12 | button.pass-btn { |
| 13 | display: block; |
| 14 | position: relative; |
| 15 | margin: 0 auto; |
| 16 | } |
| 17 | |
| 18 | /* TODO: copy-paste from Chakart */ |
| 19 | div.pass-text { |
| 20 | position: relative; |
| 21 | margin-top: 15px; |
| 22 | width: 100%; |
| 23 | text-align: center; |
| 24 | background-color: transparent; |
| 25 | color: darkred; |
| 26 | font-weight: bold; |
| 27 | font-size: 2em; |
| 28 | animation: blinker 0.5s linear infinite; |
| 29 | } |
| 30 | |
| 31 | @keyframes blinker { |
| 32 | 50% { |
| 33 | opacity: 0; |
| 34 | } |
| 35 | } |