X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=variants%2FWeiqi%2Fstyle.css;h=54b9a401afe8ab4912ab1bc20401fab9fa581e01;hb=27a6d311f49e4c1ae9415f4dc4b79dfcb690c80d;hp=daf96e4c1ba7530e639eca75519214ef42fd44a9;hpb=3cc4a84559092337d916c83367a6b457d6ca2b02;p=xogo.git diff --git a/variants/Weiqi/style.css b/variants/Weiqi/style.css index daf96e4..54b9a40 100644 --- a/variants/Weiqi/style.css +++ b/variants/Weiqi/style.css @@ -5,6 +5,31 @@ piece.white.stone { background-image: url('/variants/Weiqi/pieces/black_stone.svg'); } -piece.black.stone { +piece.black.stone, piece.white.stone.one-color { background-image: url('/variants/Weiqi/pieces/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; + } +}