diff options
author | pommicket <pommicket@gmail.com> | 2023-06-14 13:24:48 +0100 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-06-14 13:24:48 +0100 |
commit | 5d84ef35cef2959ef4901b85f3469735d51c9555 (patch) | |
tree | 73b752263af5517a0d1357a9959c7155e2a9c9c1 /index.html | |
parent | a6df8658309f82c62e4507894e409b65a6470950 (diff) |
framebuffers
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -26,11 +26,20 @@ border: 2px solid red; background-color: black; } - #error-dialog button { + dialog button { + font-family: monospace; + } + button { border: 2px solid white; background-color: black; color: white; } + button:hover { + background-color: #fff3; + } + button:active { + background-color: #fff6; + } button:focus { outline: 2px solid #0a0; } @@ -49,9 +58,6 @@ <dialog id="error-dialog"> <pre id="error-message" class="error"></pre> - <form method="dialog"> - <button>OK</button> - </form> </dialog> </body> |