diff options
Diffstat (limited to 'js/ship-game/index.html')
-rw-r--r-- | js/ship-game/index.html | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/js/ship-game/index.html b/js/ship-game/index.html index 4b8ada6..1ff3485 100644 --- a/js/ship-game/index.html +++ b/js/ship-game/index.html @@ -5,17 +5,19 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { - background-color: beige; + background-color: rgb(15, 16, 28); + background-image: url("./background.jpeg"); + background-position: center; + background-repeat: no-repeat; + background-size: cover; + padding: 0; + margin: 0; + border: 0; } canvas { - background-color: rgb(5, 10, 94); - border: 1px solid black; - cursor: none; - } - body, canvas { - padding: 1em; - margin: 1em; - border: 1em; + cursor: crosshair; + margin: 0; + display: block; } </style> </head> |