diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-10-09 15:13:37 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-10-09 18:52:13 -0400 |
commit | 8b5d16152ffb7d55811a7a558f67620a94e4cbf0 (patch) | |
tree | 451743b382c6996cb5e23169ce3547ec261bfccf /webapp/src/default.css | |
parent | 3529444fe1fcb72977dc636b0091ad2e85abed31 (diff) |
Add a reload button after an error setting up the app context
Diffstat (limited to 'webapp/src/default.css')
-rw-r--r-- | webapp/src/default.css | 21 |
1 files changed, 21 insertions, 0 deletions
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; |