From 900bb04006b0f1ba6853b8ebc56ad377767b50b3 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Mon, 24 Mar 2025 20:52:13 +0800 Subject: Use pre instead of a bad input field --- challenge.html | 6 +++--- static/style.css | 20 ++++++-------------- 2 files changed, 9 insertions(+), 17 deletions(-) diff --git a/challenge.html b/challenge.html index 0747afb..cc7f941 100644 --- a/challenge.html +++ b/challenge.html @@ -1,8 +1,8 @@ + - @@ -58,8 +58,8 @@

Select a nonce no longer than 32 bytes, such that when it is appended to the decoded form of the challenge identifier, and the entire result is hashed with SHA-256, the first {{ .Global.NeedBits }} bits of the SHA-256 hash are all zeros. Within one octet, higher bits are considered to come before lower bits.

In other words, find an nonce NN with |N|32B\lvert N\rvert \le 32\,\mathrm{B}, such that SHA256(IN)<2{{ .Global.NeedBitsReverse }}\mathrm{SHA256}(I \,\|\, N) < 2^{{{ .Global.NeedBitsReverse }}} in big endian, where II is the identifier provided below.

- - + +
{{ .Identifier }}
diff --git a/static/style.css b/static/style.css index 154d629..d7e7b62 100644 --- a/static/style.css +++ b/static/style.css @@ -62,6 +62,10 @@ label { margin-bottom: 0.5rem; } +label + pre { + margin-top: 0; +} + h1 { margin-top: 0; } @@ -76,8 +80,9 @@ a { text-decoration-color: var(--text-decoration-color); } -input[type="text"] { +input[type="text"], pre { font-family: monospace; + overflow-x: auto; font-size: 1rem; background-color: var(--lighter-box-background-color); color: var(--text-color); @@ -99,12 +104,6 @@ input[type="submit"] { cursor: pointer; } -input[readonly] { - background-color: var(--lighter-box-background-color); - color: var(--text-color); - cursor: text; -} - details { margin-top: 2rem; background-color: var(--lighter-box-background-color); @@ -113,13 +112,6 @@ details { box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.15); } -pre { - overflow-x: auto; - display: block; - white-space: pre-wrap; - word-break: break-word; -} - #solver_status { color: var(--light-text-color); margin-top: 1rem; -- cgit v1.2.3