Improvements.
h3rald h3rald@h3rald.com
Mon, 02 Dec 2024 11:26:04 +0000
2 files changed,
10 insertions(+),
7 deletions(-)
M
web/assets/styles.css
→
web/assets/styles.css
@@ -71,12 +71,13 @@ color: lime;
} -article section { +article > section { display: flex; flex-direction: column; + border: 1px solid lime; } -article section section { +article > section > section { height: 40vh; white-space: pre-wrap; overflow-y: scroll;@@ -84,21 +85,23 @@ display: flex;
flex-direction: column-reverse; scrollbar-color: black black; scrollbar-width: thin; - margin: 1rem; padding: 0.5rem; - border: 1px solid lime; } aside { display: flex; - margin: 0 1rem; + margin: 0 0.5rem; } article input { font-family: monospace; background-color: black; + border: none; color: white; - border: 1px solid lime; display: flex; flex-grow: 1; } + +article input:focus { + outline: none; +}
M
web/contents/play.html
→
web/contents/play.html
@@ -4,7 +4,7 @@ <section>
<section></section> <aside> <span>> </span> - <input id="prompt" type="text" autofocus placeholder="Enter hex code here..."/> + <input type="text" autofocus /> </aside> </section> </article>