commit: | 5f951b3d3d25aed138a5b802d118225ae0d0a48b |
author: | Chip Black |
committer: | Chip Black |
date: | Tue Oct 16 01:13:40 2018 -0500 |
parents: | 00951085ff660ae8483ab060e9ccdc97844465cd |
diff --git a/fonts/ModernDOS4378x16.ttf b/fonts/ModernDOS4378x16.ttf line changes: +0/-0 index 0000000..88fc72b --- /dev/null +++ b/fonts/ModernDOS4378x16.ttf
diff --git a/fonts/fonts.css b/fonts/fonts.css line changes: +4/-0 index 0000000..ee01836 --- /dev/null +++ b/fonts/fonts.css
@@ -0,0 +1,4 @@ +@font-face { + font-family: "Modern DOS 437"; + src: url("ModernDOS4378x16.ttf"); +}
diff --git a/index.html b/index.html line changes: +1/-0 index 16528de..6439f63 --- a/index.html +++ b/index.html
@@ -2,6 +2,7 @@ <html> <head> <title>TekNova</title> +<link rel="StyleSheet" href="fonts/fonts.css"> <link rel="StyleSheet" href="structure.css"> <script type="text/javascript" src="dist/main.js"></script> </head>
diff --git a/structure.css b/structure.css line changes: +3/-3 index fc9d9a3..c6eb71a --- a/structure.css +++ b/structure.css
@@ -45,7 +45,7 @@ body { position: absolute; top: 6px; left: 4px; - font: 16px monospace; + font: 16px "Modern DOS 437"; } #mapview td {
@@ -76,8 +76,8 @@ body { #text { border: 1px solid yellow; - padding: 8px; - font: 16px monospace; + padding: 16px; + font: 16px "Modern DOS 437"; } #editor-container {