diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 21:30:44 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 21:30:44 +0800 |
commit | 0a33d09c241593b5635bc2f9c313d76b4f6dd2fe (patch) | |
tree | 4c5d073eeb33950bc35f0656da3307967bd23ecc | |
parent | README.md: Clearer statement of goals (diff) | |
download | powxy-0a33d09c241593b5635bc2f9c313d76b4f6dd2fe.tar.gz powxy-0a33d09c241593b5635bc2f9c313d76b4f6dd2fe.tar.zst powxy-0a33d09c241593b5635bc2f9c313d76b4f6dd2fe.zip |
Remove somewhat-transparent
-rw-r--r-- | challenge.html | 4 | ||||
-rw-r--r-- | static/main.js | 2 | ||||
-rw-r--r-- | static/style.css | 4 |
3 files changed, 3 insertions, 7 deletions
diff --git a/challenge.html b/challenge.html index 76bb479..77e1eed 100644 --- a/challenge.html +++ b/challenge.html @@ -44,11 +44,11 @@ {{- end }} <section> - <p class="somewhat-transparent" id="solver_status">JavaScript seems to be disabled. You must solve the challenge externally.</p> + <p id="solver_status">JavaScript seems to be disabled. You must solve the challenge externally.</p> </section> <section> - <p class="somewhat-transparent"><a href="/.powxy/static/solver.c">A C implementation of the challenge solver</a> is available.</p> + <p><a href="/.powxy/static/solver.c">A C implementation of the challenge solver</a> is available.</p> </section> </main> </body> diff --git a/static/main.js b/static/main.js index 66ff2ab..5fdf060 100644 --- a/static/main.js +++ b/static/main.js @@ -51,7 +51,7 @@ document.addEventListener("DOMContentLoaded", async function() { let { nonce, nonce_bytes } = e.data; let nonce_str = String.fromCharCode(...nonce_bytes); field.value = btoa(nonce_str); - status_el.textContent = "Challenge solved automatically in " + nonce + " iterations"; + status_el.textContent = "Challenge solved automatically in " + nonce + " iterations."; }; worker.postMessage({ identifier_bytes, difficulty }); diff --git a/static/style.css b/static/style.css index be935c4..3a2b6a4 100644 --- a/static/style.css +++ b/static/style.css @@ -111,7 +111,3 @@ details { border-radius: var(--radius-1); box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.15); } - -.somewhat-transparent { - opacity: 0.78; -} |