diff options
author | Alan Pearce | 2024-05-15 12:44:03 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-15 12:44:03 +0200 |
commit | 2d5ee7b69cbe27e7e1abef7bf3451cb6455c4387 (patch) | |
tree | c0d321d6a9f1ea9de1447742175261ed231a3590 /frontend/static/style.css | |
parent | 149cbe7681607eb48f47df14c7a39e6f289fb7b6 (diff) | |
download | searchix-2d5ee7b69cbe27e7e1abef7bf3451cb6455c4387.tar.lz searchix-2d5ee7b69cbe27e7e1abef7bf3451cb6455c4387.tar.zst searchix-2d5ee7b69cbe27e7e1abef7bf3451cb6455c4387.zip |
feat: render HTML error pages
Diffstat (limited to 'frontend/static/style.css')
-rw-r--r-- | frontend/static/style.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/static/style.css b/frontend/static/style.css index 8f93079..9dbe198 100644 --- a/frontend/static/style.css +++ b/frontend/static/style.css @@ -2,6 +2,7 @@ --standard-border-radius: 0; --preformatted: var(--code); --min-width: 60rem; + --accent-error: #ffe0e0; } @media (prefers-color-scheme: light) { @@ -109,3 +110,7 @@ section { text-align: center; } } + +.error { + background: var(--accent-error); +} |