diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -9,10 +9,23 @@ body { position: relative; } +#header { + height: 1.5em; + padding: 5px; + border-bottom: 1px solid black; + background: #eee; +} + +a, a:visited { + color: #08a; + text-decoration: none; +} + #play-area { - width: 90vw; - height: 90vh; - padding: 5vh 5vw; + width: 100vw; + /* annoyingly, firefox ESR 115 still doesn't support lh */ + height: calc(100vh - 1.5em); + padding: 0; position: relative; user-select: none; } |