diff options
author | June McEnroe <june@causal.agency> | 2019-01-06 19:50:11 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-06 19:53:00 -0500 |
commit | 1d17d4cdcf7d6e40c0222e1d1c8b8cf868ea3796 (patch) | |
tree | 18a2bc2c8c05da78e6be8530690268c07a36547a | |
parent | Swallow writes after the connection is closed (diff) | |
download | torus-1d17d4cdcf7d6e40c0222e1d1c8b8cf868ea3796.tar.gz torus-1d17d4cdcf7d6e40c0222e1d1c8b8cf868ea3796.zip |
Set background and max-width in explore
-rw-r--r-- | explore.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/explore.html b/explore.html index dbe45ec..3344a06 100644 --- a/explore.html +++ b/explore.html @@ -1,10 +1,16 @@ <!DOCTYPE html> <title>Explore the Torus</title> <style> - body { text-align: center; } + body { + background-color: black; + text-align: center; + } table { margin: auto; } button { font-size: 250%; } - img { image-rendering: pixelated; } + img { + max-width: 100%; + image-rendering: pixelated; + } </style> <img id="tile" src="tile.png"> <table> |