diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-06 10:42:45 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-06 10:42:45 +0100 |
commit | c3c38cd2b33d37dfe980c4e21c9b369c138f20c5 (patch) | |
tree | 94bd500c3d8c66bad3a9da25a0b5ec3b1f77f6ec /plugins | |
parent | 37374ae95e615cc02da0c64a43a7a30b7156fea4 (diff) | |
download | prosody-c3c38cd2b33d37dfe980c4e21c9b369c138f20c5.tar.gz prosody-c3c38cd2b33d37dfe980c4e21c9b369c138f20c5.zip |
mod_http_errors: Normalize CSS
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http_errors.lua | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/plugins/mod_http_errors.lua b/plugins/mod_http_errors.lua index 13473219..2bb13298 100644 --- a/plugins/mod_http_errors.lua +++ b/plugins/mod_http_errors.lua @@ -26,21 +26,24 @@ local html = [[ <meta charset="utf-8"> <title>{title}</title> <style> -body{ - margin-top:14%; - text-align:center; - background-color:#F8F8F8; - font-family:sans-serif; +body { + margin-top : 14%; + text-align : center; + background-color : #F8F8F8; + font-family : sans-serif } -h1{ - font-size:xx-large; + +h1 { + font-size : xx-large } -p{ - font-size:x-large; + +p { + font-size : x-large } + p+p { - font-size:large; - font-family:courier; + font-size : large; + font-family : courier } </style> </head> |