all repos — hex @ 9a2ca6b08ffdb7ba30d6986e2d7aaed4b4bfa665

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Improvements.
h3rald h3rald@h3rald.com
Mon, 02 Dec 2024 11:26:04 +0000
commit

9a2ca6b08ffdb7ba30d6986e2d7aaed4b4bfa665

parent

93b22ac1d6c46aa9b29ae234cbfddbaf1fa26ccc

2 files changed, 10 insertions(+), 7 deletions(-)

jump to
M web/assets/styles.cssweb/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.htmlweb/contents/play.html

@@ -4,7 +4,7 @@ <section>

<section></section> <aside> <span>&gt;&nbsp;</span> - <input id="prompt" type="text" autofocus placeholder="Enter hex code here..."/> + <input type="text" autofocus /> </aside> </section> </article>