diff --git a/server.js b/server.js index f8674d8..83dc6be 100644 --- a/server.js +++ b/server.js @@ -299,10 +299,29 @@ app.get("/", (_req, res) => { .drop input { display: none; } .status { margin-top: 1rem; text-align: center; font-size: .9rem; color: #888; } .status.error { color: #f66; } + .overlay { position: fixed; inset: 0; background: #111; display: flex; + align-items: center; justify-content: center; z-index: 10; } + .auth { max-width: 340px; width: 100%; padding: 2rem; text-align: center; } + .auth h2 { font-size: 1.1rem; margin-bottom: 1rem; } + .auth input { width: 100%; padding: .6rem .8rem; border: 1px solid #444; border-radius: 8px; + background: #222; color: #eee; font-size: .95rem; margin-bottom: .8rem; } + .auth input:focus { outline: none; border-color: #4a9eff; } + .auth button { width: 100%; padding: .6rem; border: none; border-radius: 8px; + background: #4a9eff; color: #fff; font-size: .95rem; cursor: pointer; } + .auth button:hover { background: #3a8eef; } + .auth .err { color: #f66; font-size: .85rem; margin-top: .5rem; } -
+ +