diff --git a/public/dice.html b/public/dice.html index 4018b8a..1e6ee3b 100644 --- a/public/dice.html +++ b/public/dice.html @@ -7,6 +7,36 @@ background: blue; margin: 10px; } + + .dice3d { + position: relative; + width: 200px; + height: 200px; + display: flex; + justify-content: center; + align-items: center; + display: none; + } + + .dive3d>div { + width: 100%; + height: 100%; + background: #da0060; + border: 2px solid black; + position: absolute; + opacity: 0.7; + display: flex; + align-items: center; + justify-content: center; + } + + .dive3d>div:before { + content: ''; + width: 20%; + height: 20%; + background: black; + border-radius: 50%; + } @@ -23,6 +53,14 @@
+