diff --git a/frontend/3d_dungeon_crawler.html b/frontend/3d_dungeon_crawler.html
deleted file mode 100644
index d0c9499..0000000
--- a/frontend/3d_dungeon_crawler.html
+++ /dev/null
@@ -1,382 +0,0 @@
-
-
-
-
-
- Simple 3D Dungeon Crawler
-
-
-
-
-
First-Person Dungeon Crawler
-
Create a map.txt file to load your own dungeon:
-
- # = Wall
- (space) = Floor
- P = Player Start
-
-
Controls:
-
- - Click Screen: Lock mouse for camera control
- - W / S: Move Forward / Backward
- - A / D: Strafe Left / Right
- - Mouse: Look Around
- - ESC: Unlock mouse
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/frontend/ascii_dungeon_crawler.html b/frontend/ascii_dungeon_crawler.html
index 27f04f9..72395db 100755
--- a/frontend/ascii_dungeon_crawler.html
+++ b/frontend/ascii_dungeon_crawler.html
@@ -11,7 +11,6 @@
background-color: #000;
color: #ccc;
font-family: "Courier New", monospace;
- overflow: hidden;
}
#gameContainer {
@@ -20,7 +19,7 @@
#viewport {
font-size: 10px;
- line-height: 8px;
+ line-height: 7px;
white-space: pre;
border: 2px solid #0f0;
display: inline-block;
@@ -30,12 +29,11 @@
}
#minimap {
font-size: 12px;
- line-height: 12px;
+ line-height: 11.5px;
white-space: pre;
display: inline-block;
padding: 2px;
border: 5px solid #666;
- /* color: #666; */
background-color: black;
}
@@ -46,6 +44,8 @@
#mapInput {
margin-top: 20px;
+ overflow-x: scroll;
+ overflow-wrap: normal;
}
textarea {
@@ -80,15 +80,15 @@
←→↑↓
-