diff options
-rw-r--r-- | plugins/mod_http_errors.lua | 31 |
1 files changed, 6 insertions, 25 deletions
diff --git a/plugins/mod_http_errors.lua b/plugins/mod_http_errors.lua index a2138d88..2915a3e3 100644 --- a/plugins/mod_http_errors.lua +++ b/plugins/mod_http_errors.lua @@ -26,31 +26,12 @@ local html = [[ <meta charset="utf-8"> <title>{title}</title> <style> -body { - margin-top : 14%; - text-align : center; - background-color : #F8F8F8; - font-family : sans-serif -} - -h1 { - font-size : xx-large -} - -p { - font-size : x-large -} - -p.extra { - font-size : large; - font-family : courier -} - -@media(prefers-color-scheme: dark) { - body { - background-color: #161616; - color: #eee - } +body{margin-top:14%;text-align:center;background-color:#f8f8f8;font-family:sans-serif} +h1{font-size:xx-large} +p{font-size:x-large} +p.extra{font-size:large;font-family:courier} +@media(prefers-color-scheme:dark){ +body{background-color:#161616;color:#eee} } </style> </head> |