diff --git a/quickdraw-game.html b/quickdraw-game.html index 0d456bd..4742d7d 100644 --- a/quickdraw-game.html +++ b/quickdraw-game.html @@ -10,10 +10,13 @@ padding: 0; font-family: sans-serif; } + :root { + --bg: #161616; + } html { height: 100vh; width: 100vw; - background-color: #161616; + background-color: var(--bg); font-size: 24px; overflow-x: hidden; } @@ -31,19 +34,21 @@ /** border: 1px solid white; */ } #center { - height: 20px; - width: 20px; - background-color: red; + height: 50px; + width: 50px; + background-color: var(--bg); + border: 5px solid red; + border-radius: 50%; position: absolute; border-radius: 50%; } .target { - height: 20px; - width: 20px; + height: 50px; + width: 50px; background-color: red; position: absolute; - border-radius: 25%; + border-radius: 50%; } .target:active { background-color: orange; @@ -99,15 +104,16 @@