From 8b5d16152ffb7d55811a7a558f67620a94e4cbf0 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sun, 9 Oct 2022 15:13:37 -0400 Subject: Add a reload button after an error setting up the app context --- webapp/src/default.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'webapp/src/default.css') diff --git a/webapp/src/default.css b/webapp/src/default.css index 72080dd..1a6817f 100644 --- a/webapp/src/default.css +++ b/webapp/src/default.css @@ -2,6 +2,8 @@ body { background-color: #eeb; + font-family: Arial, sans-serif; + font-size: 12pt; } *{ @@ -10,6 +12,14 @@ body { margin: 0; } +.error-box { + width: 80vw; + padding: 0.5em; + border: 2px solid #444; + border-radius: 2em; + background-color: #eaa; +} + .game-layout { display: grid; grid-template-areas: "north north north nav" @@ -21,6 +31,17 @@ body { height: 100vh; } +button { + background: none!important; + border: none; + padding: 0!important; + font-family: Arial, sans-serif; + font-size: 100%; + color: #229; + text-decoration: underline; + cursor: pointer; +} + .nav { grid-area: nav; display: grid; -- cgit v1.2.3