Commit | Line | Data |
---|---|---|
3cc4a845 BA |
1 | .chessboard_SVG { |
2 | background-color: #BA8C63; | |
3 | } | |
4 | ||
5 | piece.white.stone { | |
bc97fdd1 | 6 | background-image: url('/pieces/Weiqi/black_stone.svg'); |
3cc4a845 | 7 | } |
27a6d311 | 8 | piece.black.stone, piece.white.stone.one-color { |
bc97fdd1 | 9 | background-image: url('/pieces/Weiqi/white_stone.svg'); |
3cc4a845 | 10 | } |
27a6d311 BA |
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 | } |