diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-22 20:43:42 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-22 20:43:42 +0200 |
commit | c0d64ff12827d073b0769cc7c39fd8f9d659fa81 (patch) | |
tree | bbb56d022309e879291acb4e8a1ee8f1f1b72f57 | |
parent | 546ca80d9268059e0ae3127b3d83064fd7bab5ed (diff) | |
download | algeria-c0d64ff12827d073b0769cc7c39fd8f9d659fa81.tar.gz |
log dice
-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; |