mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_errors: Style tweak
Weird to have the background all the way to the edge of the viewport. Would be nice if this could be done without the extra span.
This commit is contained in:
parent
900fe6a1cb
commit
24974dc1c6
1 changed files with 3 additions and 3 deletions
|
@ -29,18 +29,18 @@ local html = [[
|
|||
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.warning{font-size:large;background-color:yellow}
|
||||
p.warning>span{font-size:large;background-color:yellow}
|
||||
p.extra{font-size:large;font-family:courier}
|
||||
@media(prefers-color-scheme:dark){
|
||||
body{background-color:#161616;color:#eee}
|
||||
p.warning{background-color:inherit;color:yellow}
|
||||
p.warning>span{background-color:inherit;color:yellow}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>{title}</h1>
|
||||
<p>{message}</p>
|
||||
{warning&<p class="warning">⚠ {warning?} ⚠</p>}
|
||||
{warning&<p class="warning"><span>⚠ {warning?} ⚠</span></p>}
|
||||
{extra&<p class="extra">{extra?}</p>}
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue