Skip to content

Commit

Permalink
improve styles
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Hardman <[email protected]>
  • Loading branch information
dhh1128 committed Sep 6, 2024
1 parent a0a8fb7 commit 0aa10aa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 additions & 5 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,25 @@ a:hover {
border-bottom: solid 1px #914f37;
}
a:visited { color: #914f37 }
label, textarea, input {
display: inline;
label, textarea, input[type="text"] {
width: 100%;
padding: 0.5em;
margin: 0.5em 0;
display: block;
}
textarea, input[type="text"] {
background-color: #fbf6f3;
}
label {
padding-top: 1em;
}
button {
background-color: #f3e4da;
background-color: #d1c5c0;
color: #491705;
padding: 0.5em 1em;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #491705;
color: #ecd1c1;
background-color: #baa8a1;
}
2 changes: 1 addition & 1 deletion form.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
const sha256 = await crypto.subtle.digest('SHA-256', canonical);
el('sha256').value = hexHash(sha256);
const blake3 = await hashwasm.blake3(canonical);
el('blake3').value = hexHash(blake3);
el('blake3').value = blake3;
}

// Add event listener for "keydown" event
Expand Down

0 comments on commit 0aa10aa

Please sign in to comment.