diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-03-03 10:24:12 +0000 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-03-03 10:24:12 +0000 |
| commit | 14e968309da5036711ee0e3995362aa19d7bd7d8 (patch) | |
| tree | d3f630ac612fabe4380caa8f7c7b24d64e21f1a8 /public/help | |
| parent | 119e396029a5fd845d32e6c7b1c717254e9546a6 (diff) | |
| download | zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.gz zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.bz2 zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.xz zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.zip | |
big update!
Diffstat (limited to 'public/help')
| -rw-r--r-- | public/help/index.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/public/help/index.html b/public/help/index.html new file mode 100644 index 0000000..9a4bc55 --- /dev/null +++ b/public/help/index.html @@ -0,0 +1,51 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Help</title> + <style> + /* import Inter font */ + @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); + + /* apply Inter font to entire html document */ + html { + font-family: "Inter"; + } + + /* remove margin and padding from body */ + body { + margin: 0; + padding: 0; + } + + /* remove top margin from first-child h1 of element */ + h1:first-child { + margin-top: 0; + } + + /* apply light padding to body */ + body { + padding: 20px; + } + + /* make all text justified */ + body { + text-align: justify; + } + + /* accomodate dark mode users defaults */ + @media (prefers-color-scheme: dark) { + body { + background-color: black; + color: white; + } + } + </style> + </head> + <body> + <p>Coming soon! For now, email us at:</p> + + <p><a href="mailto:help@zue.dev">help@zue.dev</a></p> + </body> +</html> |
