From 4331950bb397aec53056e57913adaea453821ede Mon Sep 17 00:00:00 2001 From: Justijn Depover Date: Fri, 4 Oct 2019 08:26:19 +0200 Subject: [PATCH] Mobile friendly fix --- style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style.css b/style.css index e026c38..e661b5e 100644 --- a/style.css +++ b/style.css @@ -15,6 +15,7 @@ body { font-family: "courier new", monospace; color: darkorange; background: #000400; + word-wrap: break-word; } a { background: darkorange; @@ -133,3 +134,10 @@ div.alert-success { opacity: 1; } } + +/* Mobile */ +@media (min-width: 768px) { + td { + display: block; + } +}