diff options
author | Starfall <us@starfall.systems> | 2023-09-05 19:09:31 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-09-05 19:09:31 -0500 |
commit | 57255a83a785ab1e9525a7d4c58e00d17ce446ad (patch) | |
tree | 5b1657931f964629e315fff951b0087d0a4d7b9f /css | |
parent | c0d2f6523324cfbd096b1c108800e50a1b87bf9b (diff) |
more or less fix CSS on mobile
Diffstat (limited to 'css')
-rw-r--r-- | css/terminal.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/css/terminal.css b/css/terminal.css index 7ade7f9..80480e3 100644 --- a/css/terminal.css +++ b/css/terminal.css @@ -115,6 +115,9 @@ h3 { font: bold 117%/1 var(--font-accent); } /* NAVIGATION */ +header > nav { + display: inline-block; /* forces single line nav... not ideal but works for now FIXME */ +} header > nav > ul { font: 100%/1.5 var(--font-accent); list-style-type: none; @@ -187,3 +190,9 @@ table.center-cells td, table.center-cells th { text-align: center; } +/* DECORATIONS */ +#decor-moons { + float: right; + user-select: none; + overflow: hidden; +} |