From c0d64ff12827d073b0769cc7c39fd8f9d659fa81 Mon Sep 17 00:00:00 2001
From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com>
Date: Sun, 22 Oct 2023 20:43:42 +0200
Subject: log dice

---
 play.html | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/play.html b/play.html
index 86270f2..2a87bf6 100644
--- a/play.html
+++ b/play.html
@@ -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;
-- 
cgit v1.2.3