Progress on Go game
[xogo.git] / variants / Weiqi / style.css
CommitLineData
3cc4a845
BA
1.chessboard_SVG {
2 background-color: #BA8C63;
3}
4
5piece.white.stone {
6 background-image: url('/variants/Weiqi/pieces/black_stone.svg');
7}
27a6d311 8piece.black.stone, piece.white.stone.one-color {
3cc4a845
BA
9 background-image: url('/variants/Weiqi/pieces/white_stone.svg');
10}
27a6d311
BA
11
12button.pass-btn {
13 display: block;
14 position: relative;
15 margin: 0 auto;
16}
17
18/* TODO: copy-paste from Chakart */
19div.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}