diff options
| author | ewy <ewy0@protonmail.com> | 2026-04-23 02:25:08 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-04-23 02:25:08 +0200 |
| commit | b2dd870dce45cd06ebd90cc1652b17ec1066a6ec (patch) | |
| tree | 70dc640ec8455c20d2fe818b8188ace1c4ce3d11 /terminal.css | |
| parent | 1bc5229bfd04c295ae0ac53b8558e5ba6d24f938 (diff) | |
orientation rules
Diffstat (limited to 'terminal.css')
| -rw-r--r-- | terminal.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/terminal.css b/terminal.css index 59d9c19..13464ac 100644 --- a/terminal.css +++ b/terminal.css @@ -17,12 +17,24 @@ html { color: var(--foreground); } + +@media(orientation: portrait) { + body { + padding: 32px; + } +} + +@media(orientation: landscape) { + body { + max-width: 40em; + } +} + body { display: flex; flex-direction: column; gap: 32px; padding-top: 32px; - max-width: 40em; margin: auto; font-family: monospace; font-size: 1.2em; |
