diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/main.js | 2 | ||||
-rw-r--r-- | static/style.css | 4 |
2 files changed, 1 insertions, 5 deletions
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; -} |