X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=variants%2FWeiqi%2Fstyle.css;h=85e571291b961e7c5dbaaba99a22164be886584f;hb=03883a0d1495bc6e6fadc3a11aa99286aba5c9e1;hp=daf96e4c1ba7530e639eca75519214ef42fd44a9;hpb=3cc4a84559092337d916c83367a6b457d6ca2b02;p=xogo.git diff --git a/variants/Weiqi/style.css b/variants/Weiqi/style.css index daf96e4..85e5712 100644 --- a/variants/Weiqi/style.css +++ b/variants/Weiqi/style.css @@ -3,8 +3,33 @@ } piece.white.stone { - background-image: url('/variants/Weiqi/pieces/black_stone.svg'); + background-image: url('/pieces/Weiqi/black_stone.svg'); } -piece.black.stone { - background-image: url('/variants/Weiqi/pieces/white_stone.svg'); +piece.black.stone, piece.white.stone.one-color { + background-image: url('/pieces/Weiqi/white_stone.svg'); +} + +button.pass-btn { + display: block; + position: relative; + margin: 0 auto; +} + +/* TODO: copy-paste from Chakart */ +div.pass-text { + position: relative; + margin-top: 15px; + width: 100%; + text-align: center; + background-color: transparent; + color: darkred; + font-weight: bold; + font-size: 2em; + animation: blinker 0.5s linear infinite; +} + +@keyframes blinker { + 50% { + opacity: 0; + } }