aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_http_errors.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-01-06 10:42:45 +0100
committerKim Alvefur <zash@zash.se>2019-01-06 10:42:45 +0100
commit17be1c595df0e62ff28d9e115b83ace74c800db0 (patch)
tree94bd500c3d8c66bad3a9da25a0b5ec3b1f77f6ec /plugins/mod_http_errors.lua
parent60213520c2a27bf0472a0ef5a2cf16640134a1a8 (diff)
downloadprosody-17be1c595df0e62ff28d9e115b83ace74c800db0.tar.gz
prosody-17be1c595df0e62ff28d9e115b83ace74c800db0.zip
mod_http_errors: Normalize CSS
Diffstat (limited to 'plugins/mod_http_errors.lua')
-rw-r--r--plugins/mod_http_errors.lua25
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>