mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-14 00:45:10 +00:00
[MOD] Import PNG media.
This commit is contained in:
parent
9d9453f96a
commit
1f3d738bb4
12 changed files with 87 additions and 42 deletions
|
|
@ -76,6 +76,7 @@ RouteHead(RouteRoot, arr, argp)
|
|||
{
|
||||
P("<title>%s Lander</title>", NAME);
|
||||
P("<meta charset='UTF-8'/>");
|
||||
P("<link rel='icon' href='data:image/png;base64,%s'/>", media_parsee_logo);
|
||||
P("<style>");
|
||||
{
|
||||
P("html {");
|
||||
|
|
@ -83,6 +84,15 @@ RouteHead(RouteRoot, arr, argp)
|
|||
P("color: #eee;");
|
||||
P("font-family: sans-serif;");
|
||||
P("}");
|
||||
P("#cols {");
|
||||
P("column-count: 3;");
|
||||
P("min-width: 100%;");
|
||||
P("max-width: 100%;");
|
||||
P("width: 100%;");
|
||||
P("}");
|
||||
P("img {");
|
||||
P("image-rendering: pixelated;");
|
||||
P("}");
|
||||
P("blockquote {");
|
||||
P("border-left: 2px solid #ccc;");
|
||||
P("margin: 1.5em 10px;");
|
||||
|
|
@ -105,9 +115,9 @@ RouteHead(RouteRoot, arr, argp)
|
|||
|
||||
P("<body>");
|
||||
{
|
||||
P("<center><h1>");
|
||||
P("Your %s is running, all with that %s!", NAME, CODE);
|
||||
P("</h1></center>");
|
||||
P("<center>");
|
||||
P("<h1>Your %s is running, all with that %s!</h1>", NAME, CODE);
|
||||
P("</center>");
|
||||
P("<hr/>");
|
||||
P("<blockquote><i>");
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue