aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-17 12:00:57 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-17 12:00:57 -0400
commit2674a159142003b842da953a612b54f9ebc573f5 (patch)
treec506da27bfb81c2f08037ce148d25765e62a1e1c
parent8273fc97bbbc88a8dff2bd7482b01d753c88bc5d (diff)
downloadpython-termcast-server-2674a159142003b842da953a612b54f9ebc573f5.tar.gz
python-termcast-server-2674a159142003b842da953a612b54f9ebc573f5.zip
make the cell size more fixed
the unicode replacement character is double-wide, which throws off the formatting of things if you don't have the required glyphs
-rw-r--r--termcast_server/index.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/termcast_server/index.html b/termcast_server/index.html
index db2f191..9696760 100644
--- a/termcast_server/index.html
+++ b/termcast_server/index.html
@@ -9,6 +9,7 @@
.term {
display: none;
font-family: monospace;
+ font-size: 12px;
}
.term table {
@@ -19,6 +20,9 @@
.term td {
padding: 0px;
+ max-width: 7px;
+ max-height: 14px;
+ overflow: hidden;
}
</style>
<script>