From 279860ea21c0a679976993436a7c12f3eb87f0b1 Mon Sep 17 00:00:00 2001 From: Lisa Milne Date: Tue, 5 Dec 2023 11:45:23 +1000 Subject: [PATCH] fix some css stuff --- clite/core.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clite/core.css b/clite/core.css index 111e8cf..485780d 100644 --- a/clite/core.css +++ b/clite/core.css @@ -5,9 +5,9 @@ div, header, section, article, p, form, h1 {display:block; margin:0; padding:0;} header {padding:10px;} header h1 {line-height:40px; font-size:30px;} section {} -section.content {position:relative; overflow:hidden;} -section.content div#terminal {width:100%; min-width: 500px; max-width:1000px; max-height:100%; font-size:14px; line-height:20px; margin:0 auto; overflow:hidden; overflow-y:auto; scrollbar-width:none;} -section.content div#termalt {width:100%; min-width: 500px; max-width:1000px; margin:0 auto; overflow:hidden; overflow-y:auto; scrollbar-width:none; z-index:99; background:#000000;} +section.content {position:relative; overflow:hidden; width:100%; height:100%;} +section.content div#terminal {width:100%; min-width: 500px; max-width:1000px; min-height:100px; height:100%; font-size:14px; line-height:20px; margin:0 auto; overflow:hidden; overflow-y:auto; scrollbar-width:none;} +section.content div#termalt {width:100%; min-width: 500px; max-width:1000px; min-height:100px; height:100%; font-size:14px; line-height:20px; margin:0 auto; overflow:hidden; overflow-y:auto; scrollbar-width:none; z-index:99; background:#000000;} section.content article {unicode-bidi: embed; white-space: pre-wrap;} section.content form {display:flex;} section.content form label, section.content form input, section.content form input:focus {display:block; border:none; margin:0; padding:0; font-family:monospace; font-size:14px; line-height:20px; background-color:#000000; color:#FFFFFF; outline:none;}