diff options
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -40,6 +40,30 @@ main { background-color: dimgray } #log .both { background-image: linear-gradient(60deg, #C1E1C1, #BCDDFF); text-shadow: 0 0 4px white; } #log > .i { padding-left: 20px; } +#log .white, #log .black { + display: inline-block; + vertical-align: -2px; + width: 12px; + height: 12px; + border-radius: 0px; + box-shadow: none; + border: none; + background-size: 600% 100%; + background-repeat: no-repeat; +} + +#log .white { + background-image: url(images/die_black_pips.svg); + background-color: #fff; + border: 1px solid #444; +} + +#log .black { + background-image: url(images/die_white_pips.svg); + background-color: #666; + border: 1px solid #222; +} + #mapwrap { width: 1500px; height: 1101px; |