summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2024-10-19 10:22:52 -0700
committerRose Hogenson <rosehogenson@posteo.net>2024-10-19 10:22:52 -0700
commitd7ec25da4ee8b98acd1951de70fb4d044984bdf5 (patch)
treeeb341bc4a248d940f9953a47cf7c942b1219f276
parentb880a4fccad7eb15ba8a6665e0e3a9a0c2696dce (diff)
downloadroseh.moe-d7ec25da4ee8b98acd1951de70fb4d044984bdf5.tar.zst
Add an extremely cute landing page.
-rw-r--r--assets/icon.xcfbin0 -> 10690 bytes
-rw-r--r--assets/kanna.xcfbin0 -> 72508 bytes
-rw-r--r--static/QuickLove.woffbin0 -> 10224 bytes
-rw-r--r--static/QuickLove.woff2bin0 -> 10388 bytes
-rw-r--r--static/icon.pngbin0 -> 7039 bytes
-rw-r--r--static/index/kanna.pngbin0 -> 54665 bytes
-rw-r--r--static/index/stars.gifbin0 -> 180039 bytes
-rw-r--r--static/styles.css32
-rw-r--r--templates/index.html.template16
9 files changed, 46 insertions, 2 deletions
diff --git a/assets/icon.xcf b/assets/icon.xcf
new file mode 100644
index 0000000..d7363dd
--- /dev/null
+++ b/assets/icon.xcf
Binary files differ
diff --git a/assets/kanna.xcf b/assets/kanna.xcf
new file mode 100644
index 0000000..873bda4
--- /dev/null
+++ b/assets/kanna.xcf
Binary files differ
diff --git a/static/QuickLove.woff b/static/QuickLove.woff
new file mode 100644
index 0000000..d58264e
--- /dev/null
+++ b/static/QuickLove.woff
Binary files differ
diff --git a/static/QuickLove.woff2 b/static/QuickLove.woff2
new file mode 100644
index 0000000..ae40d38
--- /dev/null
+++ b/static/QuickLove.woff2
Binary files differ
diff --git a/static/icon.png b/static/icon.png
new file mode 100644
index 0000000..8dfebb9
--- /dev/null
+++ b/static/icon.png
Binary files differ
diff --git a/static/index/kanna.png b/static/index/kanna.png
new file mode 100644
index 0000000..e144b96
--- /dev/null
+++ b/static/index/kanna.png
Binary files differ
diff --git a/static/index/stars.gif b/static/index/stars.gif
new file mode 100644
index 0000000..2b7372f
--- /dev/null
+++ b/static/index/stars.gif
Binary files differ
diff --git a/static/styles.css b/static/styles.css
new file mode 100644
index 0000000..8c102d8
--- /dev/null
+++ b/static/styles.css
@@ -0,0 +1,32 @@
+@font-face {
+ font-family: 'QuickLove';
+ src: url('/static/QuickLove.woff2') format('woff2'),
+ url('/static/QuickLove.woff') format('woff');
+ font-weight: normal;
+ font-style: normal;
+}
+
+body {
+ background: #f5f5f5;
+}
+
+h1 {
+ font-size: 70px;
+ color: #ff69b4;
+ font-family: 'QuickLove';
+}
+
+article {
+ max-width: 800px;
+ margin: 0 auto 50px;
+ padding: 20px;
+ background: #fff0f5;
+ border: 5px solid #ff69b4;
+ border-radius: 15px;
+ box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
+}
+
+img {
+ border: 5px solid #ff69b4;
+ background: white;
+}
diff --git a/templates/index.html.template b/templates/index.html.template
index 384bb34..49316cc 100644
--- a/templates/index.html.template
+++ b/templates/index.html.template
@@ -1,9 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
- <title>roseh.moe</title>
+ <title>rose.moe</title>
+ <link rel="icon" href="/static/icon.png">
+ <link rel="stylesheet" href="/static/styles.css">
</head>
<body>
- <p>Hello world</p>
+ <div style="background-image:url(/static/index/stars.gif);background-repeat:repeat;height:500px;display:flex;justify-content:center;align-items:center">
+ <h1>roseh.moe</h1>
+ </div>
+
+ <article>
+ <center>
+ <img src="/static/index/kanna.png" alt="A dragon loli" style="border-radius:50%;margin:-100px auto 20px">
+ </center>
+
+ <p><a href="/pong">Games?</a></p>
+ </article>
</body>
</html>