From d5e15e3d617652d3484b3d0ce882f31c86d4af7a Mon Sep 17 00:00:00 2001 From: gumi Date: Fri, 29 May 2020 00:32:55 +0000 Subject: is this any better? --- src/build.ts | 12 ++++++++---- src/static/favicon.ico | Bin 0 -> 1150 bytes src/static/style.css | 32 +++++++++++++++++++++++++++++++- 3 files changed, 39 insertions(+), 5 deletions(-) create mode 100644 src/static/favicon.ico diff --git a/src/build.ts b/src/build.ts index b1d3bd8..9328c7d 100644 --- a/src/build.ts +++ b/src/build.ts @@ -25,14 +25,15 @@ const index = { The Mana World Policies - + +
\n\n" +`.trim(), list: "", suffix: "\n\n
\n\n" }; // the _redirects file used by netlify @@ -86,20 +87,23 @@ for (const [file, props] of Object.entries(policies)) { The Mana World – ${props.name} - +
${html}
+ `.trim()); // create a subdirectory for it await Deno.mkdir(`build/${file}`, {recursive: true}); - await Deno.writeFile(`build/${file}/index.html`, policyPage, {create: true}); + await Deno.writeFile(`build/${file}/index.html`, policyPage, {create: true}); + await Deno.mkdir(`build/${file}/raw`, {recursive: true}); + await Deno.writeFile(`build/${file}/raw/index.html`, encoder.encode(html), {create: true}); } // write the index page diff --git a/src/static/favicon.ico b/src/static/favicon.ico new file mode 100644 index 0000000..606d878 Binary files /dev/null and b/src/static/favicon.ico differ diff --git a/src/static/style.css b/src/static/style.css index c0f1b2d..e989cca 100644 --- a/src/static/style.css +++ b/src/static/style.css @@ -1,3 +1,33 @@ body { - background: #eee; + background: #f1f1f1; + display: block; +} + +main, article { + background: #e1d6cf; + border-radius: 15px; + padding: 5px 15px; + color: #2c3e50; + max-width: 900px; + display: block; + margin: 0 auto; +} + +h1 { + font-weight: 700; + border-bottom: 1px solid #9f9894; + color: #393939; +} + +footer { + margin: 9px; + text-align: center; + opacity: 0.7; + font-size: 0.8rem; +} + +@media screen and (min-width: 30rem) { + body { + margin: 1rem 2rem; + } } \ No newline at end of file -- cgit v1.2.3-70-g09d2